| 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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 1002 |
| 1003 deps = [ | 1003 deps = [ |
| 1004 ":chrome_internal_resources_gen", | 1004 ":chrome_internal_resources_gen", |
| 1005 "//chrome/browser/resources/safe_browsing:make_file_types_protobuf", | 1005 "//chrome/browser/resources/safe_browsing:make_file_types_protobuf", |
| 1006 | 1006 |
| 1007 # Depend only on the generated mojo bindings since we read the .mojom.js | 1007 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 1008 # file, rather than the whole mojo target which will link the C++ bindings. | 1008 # file, rather than the whole mojo target which will link the C++ bindings. |
| 1009 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 1009 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
| 1010 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 1010 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
| 1011 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", | 1011 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", |
| 1012 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", |
| 1012 "//url/mojo:url_mojom_gurl__generator", | 1013 "//url/mojo:url_mojom_gurl__generator", |
| 1014 "//url/mojo:url_mojom_origin__generator", |
| 1013 ] | 1015 ] |
| 1014 } | 1016 } |
| 1015 | 1017 |
| 1016 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen | 1018 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen |
| 1017 if (is_chrome_branded) { | 1019 if (is_chrome_branded) { |
| 1018 action("chrome_internal_resources_gen") { | 1020 action("chrome_internal_resources_gen") { |
| 1019 script = "internal/transform_additional_modules_list.py" | 1021 script = "internal/transform_additional_modules_list.py" |
| 1020 sources = [ | 1022 sources = [ |
| 1021 "internal/resources/additional_modules_list.input", | 1023 "internal/resources/additional_modules_list.input", |
| 1022 ] | 1024 ] |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1347 # linking all of the test support. | 1349 # linking all of the test support. |
| 1348 static_library("pepper_cdm_test_constants") { | 1350 static_library("pepper_cdm_test_constants") { |
| 1349 testonly = true | 1351 testonly = true |
| 1350 visibility = [ "//chrome/*" ] | 1352 visibility = [ "//chrome/*" ] |
| 1351 sources = [ | 1353 sources = [ |
| 1352 "media/pepper_cdm_test_constants.cc", | 1354 "media/pepper_cdm_test_constants.cc", |
| 1353 "media/pepper_cdm_test_constants.h", | 1355 "media/pepper_cdm_test_constants.h", |
| 1354 ] | 1356 ] |
| 1355 } | 1357 } |
| 1356 } | 1358 } |
| OLD | NEW |