| 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 | 1030 |
| 1031 deps = [ | 1031 deps = [ |
| 1032 ":chrome_internal_resources_gen", | 1032 ":chrome_internal_resources_gen", |
| 1033 "//chrome/browser/resources/safe_browsing:make_file_types_protobuf", | 1033 "//chrome/browser/resources/safe_browsing:make_file_types_protobuf", |
| 1034 | 1034 |
| 1035 # Depend only on the generated mojo bindings since we read the .mojom.js | 1035 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 1036 # file, rather than the whole mojo target which will link the C++ bindings. | 1036 # file, rather than the whole mojo target which will link the C++ bindings. |
| 1037 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 1037 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
| 1038 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 1038 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
| 1039 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", | 1039 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", |
| 1040 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", |
| 1040 "//url/mojo:url_mojom_gurl__generator", | 1041 "//url/mojo:url_mojom_gurl__generator", |
| 1041 ] | 1042 ] |
| 1042 } | 1043 } |
| 1043 | 1044 |
| 1044 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen | 1045 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen |
| 1045 if (is_chrome_branded) { | 1046 if (is_chrome_branded) { |
| 1046 action("chrome_internal_resources_gen") { | 1047 action("chrome_internal_resources_gen") { |
| 1047 script = "internal/transform_additional_modules_list.py" | 1048 script = "internal/transform_additional_modules_list.py" |
| 1048 sources = [ | 1049 sources = [ |
| 1049 "internal/resources/additional_modules_list.input", | 1050 "internal/resources/additional_modules_list.input", |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 # linking all of the test support. | 1376 # linking all of the test support. |
| 1376 static_library("pepper_cdm_test_constants") { | 1377 static_library("pepper_cdm_test_constants") { |
| 1377 testonly = true | 1378 testonly = true |
| 1378 visibility = [ "//chrome/*" ] | 1379 visibility = [ "//chrome/*" ] |
| 1379 sources = [ | 1380 sources = [ |
| 1380 "media/pepper_cdm_test_constants.cc", | 1381 "media/pepper_cdm_test_constants.cc", |
| 1381 "media/pepper_cdm_test_constants.h", | 1382 "media/pepper_cdm_test_constants.h", |
| 1382 ] | 1383 ] |
| 1383 } | 1384 } |
| 1384 } | 1385 } |
| OLD | NEW |