| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 "//chrome:strings", | 464 "//chrome:strings", |
| 465 "//chrome/app:chrome_dll_resources", | 465 "//chrome/app:chrome_dll_resources", |
| 466 "//chrome/app:command_ids", | 466 "//chrome/app:command_ids", |
| 467 "//chrome/app/resources:platform_locale_settings", | 467 "//chrome/app/resources:platform_locale_settings", |
| 468 "//chrome/app/theme:chrome_unscaled_resources", | 468 "//chrome/app/theme:chrome_unscaled_resources", |
| 469 "//chrome/app/theme:theme_resources", | 469 "//chrome/app/theme:theme_resources", |
| 470 "//chrome/browser:resource_prefetch_predictor_proto", | 470 "//chrome/browser:resource_prefetch_predictor_proto", |
| 471 "//chrome/browser/devtools", | 471 "//chrome/browser/devtools", |
| 472 "//chrome/browser/ui/webui/engagement:mojo_bindings", | 472 "//chrome/browser/ui/webui/engagement:mojo_bindings", |
| 473 "//chrome/browser/ui/webui/omnibox:mojo_bindings", | 473 "//chrome/browser/ui/webui/omnibox:mojo_bindings", |
| 474 "//chrome/browser/ui/webui/plugins:mojo_bindings", | |
| 475 "//chrome/browser/ui/webui/usb_internals:mojo_bindings", | 474 "//chrome/browser/ui/webui/usb_internals:mojo_bindings", |
| 476 "//chrome/common", | 475 "//chrome/common", |
| 477 "//chrome/common/net", | 476 "//chrome/common/net", |
| 478 "//chrome/installer/util:with_no_strings", | 477 "//chrome/installer/util:with_no_strings", |
| 479 "//components/app_modal", | 478 "//components/app_modal", |
| 480 "//components/autofill/content/browser:risk_proto", | 479 "//components/autofill/content/browser:risk_proto", |
| 481 "//components/autofill/core/browser", | 480 "//components/autofill/core/browser", |
| 482 "//components/bookmarks/browser", | 481 "//components/bookmarks/browser", |
| 483 "//components/bookmarks/managed", | 482 "//components/bookmarks/managed", |
| 484 "//components/browser_sync", | 483 "//components/browser_sync", |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1197 "webui/nacl_ui.h", | 1196 "webui/nacl_ui.h", |
| 1198 ] | 1197 ] |
| 1199 deps += [ "//components/nacl/browser" ] | 1198 deps += [ "//components/nacl/browser" ] |
| 1200 } | 1199 } |
| 1201 if (enable_plugins) { | 1200 if (enable_plugins) { |
| 1202 sources += [ | 1201 sources += [ |
| 1203 "hung_plugin_tab_helper.cc", | 1202 "hung_plugin_tab_helper.cc", |
| 1204 "hung_plugin_tab_helper.h", | 1203 "hung_plugin_tab_helper.h", |
| 1205 "webui/flash_ui.cc", | 1204 "webui/flash_ui.cc", |
| 1206 "webui/flash_ui.h", | 1205 "webui/flash_ui.h", |
| 1207 "webui/plugins/plugins_handler.cc", | |
| 1208 "webui/plugins/plugins_handler.h", | |
| 1209 "webui/plugins/plugins_ui.cc", | |
| 1210 "webui/plugins/plugins_ui.h", | |
| 1211 ] | 1206 ] |
| 1212 deps += [ "//ppapi/proxy:ipc" ] | 1207 deps += [ "//ppapi/proxy:ipc" ] |
| 1213 } | 1208 } |
| 1214 if (safe_browsing_mode == 1) { | 1209 if (safe_browsing_mode == 1) { |
| 1215 deps += [ | 1210 deps += [ |
| 1216 "//chrome/browser/safe_browsing:chunk_proto", | 1211 "//chrome/browser/safe_browsing:chunk_proto", |
| 1217 "//chrome/common/safe_browsing:proto", | 1212 "//chrome/common/safe_browsing:proto", |
| 1218 ] | 1213 ] |
| 1219 } | 1214 } |
| 1220 | 1215 |
| (...skipping 2261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3482 "test/test_confirm_bubble_model.cc", | 3477 "test/test_confirm_bubble_model.cc", |
| 3483 "test/test_confirm_bubble_model.h", | 3478 "test/test_confirm_bubble_model.h", |
| 3484 ] | 3479 ] |
| 3485 deps += [ "//chrome/test:test_support_ui" ] | 3480 deps += [ "//chrome/test:test_support_ui" ] |
| 3486 } | 3481 } |
| 3487 | 3482 |
| 3488 if (enable_extensions) { | 3483 if (enable_extensions) { |
| 3489 deps += [ "//extensions/browser" ] | 3484 deps += [ "//extensions/browser" ] |
| 3490 } | 3485 } |
| 3491 } | 3486 } |
| OLD | NEW |