| 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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 if (enable_extensions) { | 1139 if (enable_extensions) { |
| 1140 deps += [ | 1140 deps += [ |
| 1141 "//apps", | 1141 "//apps", |
| 1142 "//apps/ui/views", | 1142 "//apps/ui/views", |
| 1143 "//extensions/common:mojo", | 1143 "//extensions/common:mojo", |
| 1144 ] | 1144 ] |
| 1145 } | 1145 } |
| 1146 } | 1146 } |
| 1147 | 1147 |
| 1148 if (enable_basic_printing || enable_print_preview) { | 1148 if (enable_basic_printing || enable_print_preview) { |
| 1149 deps += [ "//printing" ] | 1149 deps += [ |
| 1150 "//components/printing/browser:browser", |
| 1151 "//printing:printing", |
| 1152 ] |
| 1150 } | 1153 } |
| 1151 | 1154 |
| 1152 if (enable_nacl) { | 1155 if (enable_nacl) { |
| 1153 sources += [ | 1156 sources += [ |
| 1154 "webui/nacl_ui.cc", | 1157 "webui/nacl_ui.cc", |
| 1155 "webui/nacl_ui.h", | 1158 "webui/nacl_ui.h", |
| 1156 ] | 1159 ] |
| 1157 deps += [ "//components/nacl/browser" ] | 1160 deps += [ "//components/nacl/browser" ] |
| 1158 } | 1161 } |
| 1159 if (enable_plugins) { | 1162 if (enable_plugins) { |
| (...skipping 2570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3730 deps += [ | 3733 deps += [ |
| 3731 "//chrome/test:test_support_ui", | 3734 "//chrome/test:test_support_ui", |
| 3732 "//components/zoom", | 3735 "//components/zoom", |
| 3733 ] | 3736 ] |
| 3734 } | 3737 } |
| 3735 | 3738 |
| 3736 if (enable_extensions) { | 3739 if (enable_extensions) { |
| 3737 deps += [ "//extensions/browser" ] | 3740 deps += [ "//extensions/browser" ] |
| 3738 } | 3741 } |
| 3739 } | 3742 } |
| OLD | NEW |