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

Side by Side Diff: chrome/BUILD.gn

Issue 2034263002: Make it so chrome manifests are built if aura is set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 56
57 if (!is_android && !is_mac) { 57 if (!is_android && !is_mac) {
58 group("chrome") { 58 group("chrome") {
59 public_deps = [ 59 public_deps = [
60 ":chrome_initial", 60 ":chrome_initial",
61 ] 61 ]
62 if (is_win) { 62 if (is_win) {
63 public_deps += [ ":reorder_imports" ] 63 public_deps += [ ":reorder_imports" ]
64 } 64 }
65 if (use_aura && (is_win || is_linux)) {
66 data_deps = [
67 "//chrome/app:mojo_manifests",
68 ]
69 }
65 } 70 }
66 71
67 executable("chrome_initial") { 72 executable("chrome_initial") {
68 if (is_win) { 73 if (is_win) {
69 output_name = "initialexe/chrome" 74 output_name = "initialexe/chrome"
70 } else { 75 } else {
71 output_name = "chrome" 76 output_name = "chrome"
72 } 77 }
73 78
74 # Because the sources list varies so significantly per-platform, generally 79 # Because the sources list varies so significantly per-platform, generally
(...skipping 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1572 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1568 "//chrome/tools/build/linux/chrome-wrapper", 1573 "//chrome/tools/build/linux/chrome-wrapper",
1569 "//third_party/xdg-utils/scripts/xdg-mime", 1574 "//third_party/xdg-utils/scripts/xdg-mime",
1570 "//third_party/xdg-utils/scripts/xdg-settings", 1575 "//third_party/xdg-utils/scripts/xdg-settings",
1571 ] 1576 ]
1572 outputs = [ 1577 outputs = [
1573 "$root_out_dir/{{source_file_part}}", 1578 "$root_out_dir/{{source_file_part}}",
1574 ] 1579 ]
1575 } 1580 }
1576 } 1581 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698