Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1237)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 1009943004: Remove dependency on //components/feedback on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 30 matching lines...) Expand all
41 "//chrome:resources", 41 "//chrome:resources",
42 "//chrome:strings", 42 "//chrome:strings",
43 "//chrome/app/resources:platform_locale_settings", 43 "//chrome/app/resources:platform_locale_settings",
44 "//chrome/app/theme:theme_resources", 44 "//chrome/app/theme:theme_resources",
45 "//chrome/browser/net:cert_logger_proto", 45 "//chrome/browser/net:cert_logger_proto",
46 "//chrome/common", 46 "//chrome/common",
47 "//chrome/common/net", 47 "//chrome/common/net",
48 "//components/app_modal", 48 "//components/app_modal",
49 "//components/auto_login_parser", 49 "//components/auto_login_parser",
50 "//components/dom_distiller/webui", 50 "//components/dom_distiller/webui",
51 "//components/feedback/proto",
52 "//components/invalidation", 51 "//components/invalidation",
53 "//components/onc", 52 "//components/onc",
54 "//components/password_manager/core/browser", 53 "//components/password_manager/core/browser",
55 "//components/resources", 54 "//components/resources",
56 "//components/strings", 55 "//components/strings",
57 "//components/update_client", 56 "//components/update_client",
58 "//content/public/common", 57 "//content/public/common",
59 "//crypto", 58 "//crypto",
60 "//skia", 59 "//skia",
61 "//third_party/cacheinvalidation", 60 "//third_party/cacheinvalidation",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 if (!is_android && !is_ios) { 126 if (!is_android && !is_ios) {
128 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources, 127 sources += rebase_path(gypi_values.chrome_browser_ui_non_mobile_sources,
129 ".", 128 ".",
130 "//chrome") 129 "//chrome")
131 sources += 130 sources +=
132 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources, 131 rebase_path(gypi_values.chrome_browser_ui_omnibox_non_mobile_sources,
133 ".", 132 ".",
134 "//chrome") 133 "//chrome")
135 deps += [ 134 deps += [
136 "//components/copresence", 135 "//components/copresence",
136 "//components/feedback/proto",
137 "//device/bluetooth", 137 "//device/bluetooth",
138 "//third_party/libusb", 138 "//third_party/libusb",
139 ] 139 ]
140 } 140 }
141 141
142 if (enable_basic_printing || enable_print_preview) { 142 if (enable_basic_printing || enable_print_preview) {
143 deps += [ "//printing" ] 143 deps += [ "//printing" ]
144 } 144 }
145 145
146 if (enable_one_click_signin) { 146 if (enable_one_click_signin) {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 } 326 }
327 327
328 if (is_android) { 328 if (is_android) {
329 deps += [ 329 deps += [
330 "//chrome/browser:jni_headers", 330 "//chrome/browser:jni_headers",
331 "//crypto:platform", 331 "//crypto:platform",
332 "//components/web_contents_delegate_android", 332 "//components/web_contents_delegate_android",
333 ] 333 ]
334 deps -= [ 334 deps -= [
335 "//chrome/browser/ui/views", 335 "//chrome/browser/ui/views",
336 "//components/feedback/proto",
337 "//ui/events", 336 "//ui/events",
338 ] 337 ]
339 sources += rebase_path(gypi_values.chrome_browser_ui_android_sources, 338 sources += rebase_path(gypi_values.chrome_browser_ui_android_sources,
340 ".", 339 ".",
341 "//chrome") 340 "//chrome")
342 341
343 defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ] 342 defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ]
344 } 343 }
345 344
346 if (is_mac) { 345 if (is_mac) {
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 "//chrome/browser", 535 "//chrome/browser",
537 "//content/public/browser", 536 "//content/public/browser",
538 "//content/public/common", 537 "//content/public/common",
539 "//content/test:test_support", 538 "//content/test:test_support",
540 "//net:test_support", 539 "//net:test_support",
541 "//skia", 540 "//skia",
542 "//testing/gtest", 541 "//testing/gtest",
543 "//ui/base", 542 "//ui/base",
544 ] 543 ]
545 } 544 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698