| 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 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 grit_flags = [ | 1021 grit_flags = [ |
| 1022 "-E", | 1022 "-E", |
| 1023 "additional_modules_list_file=" + | 1023 "additional_modules_list_file=" + |
| 1024 rebase_path(additional_modules_list_file, root_build_dir), | 1024 rebase_path(additional_modules_list_file, root_build_dir), |
| 1025 "-E", | 1025 "-E", |
| 1026 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 1026 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 1027 ] | 1027 ] |
| 1028 | 1028 |
| 1029 deps = [ | 1029 deps = [ |
| 1030 ":chrome_internal_resources_gen", | 1030 ":chrome_internal_resources_gen", |
| 1031 "//chrome/browser/resources/safe_browsing:make_file_types_protobuf", |
| 1031 | 1032 |
| 1032 # Depend only on the generated mojo bindings since we read the .mojom.js | 1033 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 1033 # file, rather than the whole mojo target which will link the C++ bindings. | 1034 # file, rather than the whole mojo target which will link the C++ bindings. |
| 1034 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 1035 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
| 1035 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 1036 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
| 1036 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", | 1037 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", |
| 1037 ] | 1038 ] |
| 1038 } | 1039 } |
| 1039 | 1040 |
| 1040 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen | 1041 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1330 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1330 deps = [ | 1331 deps = [ |
| 1331 "//components/google/core/browser", | 1332 "//components/google/core/browser", |
| 1332 "//components/omnibox/browser", | 1333 "//components/omnibox/browser", |
| 1333 "//components/rlz", | 1334 "//components/rlz", |
| 1334 "//components/search_engines", | 1335 "//components/search_engines", |
| 1335 "//rlz:rlz_lib", | 1336 "//rlz:rlz_lib", |
| 1336 ] | 1337 ] |
| 1337 } | 1338 } |
| 1338 } | 1339 } |
| OLD | NEW |