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