From 58374fa6d035bed5afc347faca387cbff7a913af Mon Sep 17 00:00:00 2001 From: Simon Hong Date: Fri, 13 Jan 2023 18:53:33 +0900 Subject: [PATCH] Reordering properties in text_recognition/browser target --- components/text_recognition/browser/BUILD.gn | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/text_recognition/browser/BUILD.gn b/components/text_recognition/browser/BUILD.gn index 6dc80d301b948..300b34d85910a 100644 --- a/components/text_recognition/browser/BUILD.gn +++ b/components/text_recognition/browser/BUILD.gn @@ -12,6 +12,13 @@ component("browser") { sources = [ "text_recognition.h" ] + defines = [ "IS_TEXT_RECOGNITION_BROWSER_IMPL" ] + + deps = [ + "//base", + "//skia", + ] + if (is_mac) { sources += [ "text_recognition.mm" ] @@ -22,11 +29,4 @@ component("browser") { configs += [ "//build/config/compiler:enable_arc" ] } - - deps = [ - "//base", - "//skia", - ] - - defines = [ "IS_TEXT_RECOGNITION_BROWSER_IMPL" ] }