| 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/chrome_build.gni") | 5 import("//build/config/chrome_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 4119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4130 deps = [ | 4130 deps = [ |
| 4131 ":chrome_internal_resources_gen", | 4131 ":chrome_internal_resources_gen", |
| 4132 | 4132 |
| 4133 # Depend only on the generated mojo bindings since we read the .mojom.js | 4133 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 4134 # file, rather than the whole mojo target which will link the C++ bindings. | 4134 # file, rather than the whole mojo target which will link the C++ bindings. |
| 4135 "//chrome/app:chrome_content_browser_manifest_overlay", | 4135 "//chrome/app:chrome_content_browser_manifest_overlay", |
| 4136 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 4136 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
| 4137 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 4137 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
| 4138 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", | 4138 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", |
| 4139 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", | 4139 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", |
| 4140 "//device/bluetooth/public/interfaces:interfaces__generator", |
| 4140 "//url/mojo:url_mojom_gurl__generator", | 4141 "//url/mojo:url_mojom_gurl__generator", |
| 4141 "//url/mojo:url_mojom_origin__generator", | 4142 "//url/mojo:url_mojom_origin__generator", |
| 4142 ] | 4143 ] |
| 4143 | 4144 |
| 4144 if (safe_browsing_mode > 0) { | 4145 if (safe_browsing_mode > 0) { |
| 4145 deps += | 4146 deps += |
| 4146 [ "//chrome/browser/resources/safe_browsing:make_file_types_protobuf" ] | 4147 [ "//chrome/browser/resources/safe_browsing:make_file_types_protobuf" ] |
| 4147 } | 4148 } |
| 4148 deps += [ "//chrome/browser/resources/ssl/tls_error_assistant:make_tls_error_a
ssistant_protobuf" ] | 4149 deps += [ "//chrome/browser/resources/ssl/tls_error_assistant:make_tls_error_a
ssistant_protobuf" ] |
| 4149 } | 4150 } |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4482 "media/pepper_cdm_test_constants.cc", | 4483 "media/pepper_cdm_test_constants.cc", |
| 4483 "media/pepper_cdm_test_constants.h", | 4484 "media/pepper_cdm_test_constants.h", |
| 4484 ] | 4485 ] |
| 4485 } | 4486 } |
| 4486 } | 4487 } |
| 4487 | 4488 |
| 4488 service_manifest("preferences_manifest") { | 4489 service_manifest("preferences_manifest") { |
| 4489 name = "preferences" | 4490 name = "preferences" |
| 4490 source = "prefs/preferences_manifest.json" | 4491 source = "prefs/preferences_manifest.json" |
| 4491 } | 4492 } |
| OLD | NEW |