OLD | NEW |
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 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 | 10 |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 "//chrome") | 206 "//chrome") |
207 deps += [ | 207 deps += [ |
208 "//chrome/browser/profile_resetter:profile_reset_report_proto", | 208 "//chrome/browser/profile_resetter:profile_reset_report_proto", |
209 "//chrome/common:features", | 209 "//chrome/common:features", |
210 "//components/feedback/proto", | 210 "//components/feedback/proto", |
211 "//components/proximity_auth/webui", | 211 "//components/proximity_auth/webui", |
212 "//device/bluetooth", | 212 "//device/bluetooth", |
213 ] | 213 ] |
214 } | 214 } |
215 | 215 |
216 if (use_aura) { | |
217 defines += [ "MOJO_RUNNER_CLIENT" ] | |
218 } | |
219 | |
220 if (enable_basic_printing || enable_print_preview) { | 216 if (enable_basic_printing || enable_print_preview) { |
221 deps += [ "//printing" ] | 217 deps += [ "//printing" ] |
222 } | 218 } |
223 | 219 |
224 if (enable_nacl) { | 220 if (enable_nacl) { |
225 sources += | 221 sources += |
226 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") | 222 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") |
227 deps += [ "//native_client/src/trusted/service_runtime:sel" ] | 223 deps += [ "//native_client/src/trusted/service_runtime:sel" ] |
228 } | 224 } |
229 if (enable_plugins) { | 225 if (enable_plugins) { |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 "//chrome/browser", | 705 "//chrome/browser", |
710 "//content/public/browser", | 706 "//content/public/browser", |
711 "//content/public/common", | 707 "//content/public/common", |
712 "//content/test:test_support", | 708 "//content/test:test_support", |
713 "//net:test_support", | 709 "//net:test_support", |
714 "//skia", | 710 "//skia", |
715 "//testing/gtest", | 711 "//testing/gtest", |
716 "//ui/base", | 712 "//ui/base", |
717 ] | 713 ] |
718 } | 714 } |
OLD | NEW |