| 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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 deps += [ | 1198 deps += [ |
| 1199 "//apps", | 1199 "//apps", |
| 1200 "//apps/ui/views", | 1200 "//apps/ui/views", |
| 1201 "//chrome/app/vector_icons", | 1201 "//chrome/app/vector_icons", |
| 1202 "//chrome/browser/profile_resetter:profile_reset_report_proto", | 1202 "//chrome/browser/profile_resetter:profile_reset_report_proto", |
| 1203 "//chrome/common:features", | 1203 "//chrome/common:features", |
| 1204 "//components/feedback/proto", | 1204 "//components/feedback/proto", |
| 1205 "//components/proximity_auth/webui", | 1205 "//components/proximity_auth/webui", |
| 1206 "//components/web_modal", | 1206 "//components/web_modal", |
| 1207 "//device/bluetooth", | 1207 "//device/bluetooth", |
| 1208 "//extensions/common:mojo", | |
| 1209 "//mash/public/interfaces", | 1208 "//mash/public/interfaces", |
| 1210 "//services/device/public/interfaces", | 1209 "//services/device/public/interfaces", |
| 1211 "//ui/vector_icons", | 1210 "//ui/vector_icons", |
| 1212 ] | 1211 ] |
| 1212 |
| 1213 if (enable_extensions) { |
| 1214 deps += [ "//extensions/common:mojo" ] |
| 1215 } |
| 1213 } | 1216 } |
| 1214 | 1217 |
| 1215 if (enable_basic_printing || enable_print_preview) { | 1218 if (enable_basic_printing || enable_print_preview) { |
| 1216 deps += [ "//printing" ] | 1219 deps += [ "//printing" ] |
| 1217 } | 1220 } |
| 1218 | 1221 |
| 1219 if (enable_nacl) { | 1222 if (enable_nacl) { |
| 1220 sources += [ | 1223 sources += [ |
| 1221 "webui/nacl_ui.cc", | 1224 "webui/nacl_ui.cc", |
| 1222 "webui/nacl_ui.h", | 1225 "webui/nacl_ui.h", |
| (...skipping 2377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3600 "test/test_confirm_bubble_model.cc", | 3603 "test/test_confirm_bubble_model.cc", |
| 3601 "test/test_confirm_bubble_model.h", | 3604 "test/test_confirm_bubble_model.h", |
| 3602 ] | 3605 ] |
| 3603 deps += [ "//chrome/test:test_support_ui" ] | 3606 deps += [ "//chrome/test:test_support_ui" ] |
| 3604 } | 3607 } |
| 3605 | 3608 |
| 3606 if (enable_extensions) { | 3609 if (enable_extensions) { |
| 3607 deps += [ "//extensions/browser" ] | 3610 deps += [ "//extensions/browser" ] |
| 3608 } | 3611 } |
| 3609 } | 3612 } |
| OLD | NEW |