| 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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 rebase_path(additional_modules_list_file, root_build_dir), | 1016 rebase_path(additional_modules_list_file, root_build_dir), |
| 1017 "-E", | 1017 "-E", |
| 1018 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 1018 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 1019 ] | 1019 ] |
| 1020 | 1020 |
| 1021 deps = [ | 1021 deps = [ |
| 1022 ":chrome_internal_resources_gen", | 1022 ":chrome_internal_resources_gen", |
| 1023 | 1023 |
| 1024 # Depend only on the generated mojo bindings since we read the .mojom.js | 1024 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 1025 # file, rather than the whole mojo target which will link the C++ bindings. | 1025 # file, rather than the whole mojo target which will link the C++ bindings. |
| 1026 "//chrome/browser/ui/webui:mojo_bindings__generator", |
| 1026 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 1027 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
| 1027 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 1028 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
| 1028 ] | 1029 ] |
| 1029 } | 1030 } |
| 1030 | 1031 |
| 1031 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen | 1032 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen |
| 1032 if (is_chrome_branded) { | 1033 if (is_chrome_branded) { |
| 1033 action("chrome_internal_resources_gen") { | 1034 action("chrome_internal_resources_gen") { |
| 1034 script = "internal/transform_additional_modules_list.py" | 1035 script = "internal/transform_additional_modules_list.py" |
| 1035 sources = [ | 1036 sources = [ |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1321 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1321 deps = [ | 1322 deps = [ |
| 1322 "//components/google/core/browser", | 1323 "//components/google/core/browser", |
| 1323 "//components/omnibox/browser", | 1324 "//components/omnibox/browser", |
| 1324 "//components/rlz", | 1325 "//components/rlz", |
| 1325 "//components/search_engines", | 1326 "//components/search_engines", |
| 1326 "//rlz:rlz_lib", | 1327 "//rlz:rlz_lib", |
| 1327 ] | 1328 ] |
| 1328 } | 1329 } |
| 1329 } | 1330 } |
| OLD | NEW |