Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(845)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1828733004: Load application manifests from resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 "grit/browser_resources.h", 1013 "grit/browser_resources.h",
1014 "browser_resources.pak", 1014 "browser_resources.pak",
1015 ] 1015 ]
1016 1016
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 "-E",
1024 "root_out_dir=" + rebase_path(root_out_dir, root_build_dir),
1023 ] 1025 ]
1024 1026
1025 deps = [ 1027 deps = [
1026 ":chrome_internal_resources_gen", 1028 ":chrome_internal_resources_gen",
1029 "//chrome/app:mojo_manifests",
1027 1030
1028 # Depend only on the generated mojo bindings since we read the .mojom.js 1031 # 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. 1032 # file, rather than the whole mojo target which will link the C++ bindings.
1030 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", 1033 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator",
1031 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", 1034 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator",
1032 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", 1035 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator",
1033 ] 1036 ]
1034 } 1037 }
1035 1038
1036 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen 1039 # GYP version: chrome/chrome_resource.gyp:chrome_internal_resources_gen
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1328 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1326 deps = [ 1329 deps = [
1327 "//components/google/core/browser", 1330 "//components/google/core/browser",
1328 "//components/omnibox/browser", 1331 "//components/omnibox/browser",
1329 "//components/rlz", 1332 "//components/rlz",
1330 "//components/search_engines", 1333 "//components/search_engines",
1331 "//rlz:rlz_lib", 1334 "//rlz:rlz_lib",
1332 ] 1335 ]
1333 } 1336 }
1334 } 1337 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698