Chromium Code Reviews| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1131 if (enable_extensions) { | 1131 if (enable_extensions) { |
| 1132 deps += [ | 1132 deps += [ |
| 1133 "//apps", | 1133 "//apps", |
| 1134 "//apps/ui/views", | 1134 "//apps/ui/views", |
| 1135 "//extensions/common:mojo", | 1135 "//extensions/common:mojo", |
| 1136 ] | 1136 ] |
| 1137 } | 1137 } |
| 1138 } | 1138 } |
| 1139 | 1139 |
| 1140 if (enable_basic_printing || enable_print_preview) { | 1140 if (enable_basic_printing || enable_print_preview) { |
| 1141 deps += [ "//printing" ] | 1141 deps += [ |
| 1142 "//components/printing/browser", | |
| 1143 "//printing:printing", | |
|
Lei Zhang
2017/09/09 00:44:59
Same here. Just //printing.
| |
| 1144 ] | |
| 1142 } | 1145 } |
| 1143 | 1146 |
| 1144 if (enable_nacl) { | 1147 if (enable_nacl) { |
| 1145 sources += [ | 1148 sources += [ |
| 1146 "webui/nacl_ui.cc", | 1149 "webui/nacl_ui.cc", |
| 1147 "webui/nacl_ui.h", | 1150 "webui/nacl_ui.h", |
| 1148 ] | 1151 ] |
| 1149 deps += [ "//components/nacl/browser" ] | 1152 deps += [ "//components/nacl/browser" ] |
| 1150 } | 1153 } |
| 1151 if (enable_plugins) { | 1154 if (enable_plugins) { |
| (...skipping 2469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3621 deps += [ | 3624 deps += [ |
| 3622 "//chrome/test:test_support_ui", | 3625 "//chrome/test:test_support_ui", |
| 3623 "//components/zoom", | 3626 "//components/zoom", |
| 3624 ] | 3627 ] |
| 3625 } | 3628 } |
| 3626 | 3629 |
| 3627 if (enable_extensions) { | 3630 if (enable_extensions) { |
| 3628 deps += [ "//extensions/browser" ] | 3631 deps += [ "//extensions/browser" ] |
| 3629 } | 3632 } |
| 3630 } | 3633 } |
| OLD | NEW |