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 | 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 "//components/proximity_auth/webui", | 147 "//components/proximity_auth/webui", |
148 "//device/bluetooth", | 148 "//device/bluetooth", |
149 "//third_party/libusb", | 149 "//third_party/libusb", |
150 ] | 150 ] |
151 | 151 |
152 if (is_android) { | 152 if (is_android) { |
153 deps -= [ "//third_party/libusb" ] | 153 deps -= [ "//third_party/libusb" ] |
154 } | 154 } |
155 } | 155 } |
156 | 156 |
| 157 if (use_aura) { |
| 158 defines += [ "MOJO_RUNNER_CLIENT" ] |
| 159 } |
| 160 |
157 if (enable_basic_printing || enable_print_preview) { | 161 if (enable_basic_printing || enable_print_preview) { |
158 deps += [ "//printing" ] | 162 deps += [ "//printing" ] |
159 } | 163 } |
160 | 164 |
161 if (enable_nacl) { | 165 if (enable_nacl) { |
162 sources += | 166 sources += |
163 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") | 167 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") |
164 deps += [ "//native_client/src/trusted/service_runtime:sel" ] | 168 deps += [ "//native_client/src/trusted/service_runtime:sel" ] |
165 } | 169 } |
166 if (enable_configuration_policy) { | 170 if (enable_configuration_policy) { |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 "//chrome/browser", | 602 "//chrome/browser", |
599 "//content/public/browser", | 603 "//content/public/browser", |
600 "//content/public/common", | 604 "//content/public/common", |
601 "//content/test:test_support", | 605 "//content/test:test_support", |
602 "//net:test_support", | 606 "//net:test_support", |
603 "//skia", | 607 "//skia", |
604 "//testing/gtest", | 608 "//testing/gtest", |
605 "//ui/base", | 609 "//ui/base", |
606 ] | 610 ] |
607 } | 611 } |
OLD | NEW |