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

Side by Side Diff: chrome/BUILD.gn

Issue 1701053002: gn/win: Try to get chrome_elf_unittests passing on swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hmm Created 4 years, 10 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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/locales.gni") 8 import("//build/config/locales.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 56 }
57 57
58 if (!is_android) { 58 if (!is_android) {
59 group("chrome") { 59 group("chrome") {
60 public_deps = [ 60 public_deps = [
61 ":chrome_initial", 61 ":chrome_initial",
62 ] 62 ]
63 if (is_win) { 63 if (is_win) {
64 public_deps += [ ":reorder_imports" ] 64 public_deps += [ ":reorder_imports" ]
65 } 65 }
66 data_deps = [
67 ":chrome_initial",
68 ]
Dirk Pranke 2016/02/16 19:57:44 I think this needs :reorder_imports as well on win
Nico 2016/02/16 20:08:20 Oh, and it should not have :chrome_initial on win,
66 } 69 }
67 70
68 executable("chrome_initial") { 71 executable("chrome_initial") {
69 if (is_win) { 72 if (is_win) {
70 output_name = "initialexe/chrome" 73 output_name = "initialexe/chrome"
71 } else { 74 } else {
72 output_name = "chrome" 75 output_name = "chrome"
73 } 76 }
74 77
75 # Because the sources list varies so significantly per-platform, generally 78 # Because the sources list varies so significantly per-platform, generally
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
1090 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1093 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1091 "//chrome/tools/build/linux/chrome-wrapper", 1094 "//chrome/tools/build/linux/chrome-wrapper",
1092 "//third_party/xdg-utils/scripts/xdg-mime", 1095 "//third_party/xdg-utils/scripts/xdg-mime",
1093 "//third_party/xdg-utils/scripts/xdg-settings", 1096 "//third_party/xdg-utils/scripts/xdg-settings",
1094 ] 1097 ]
1095 outputs = [ 1098 outputs = [
1096 "$root_out_dir/{{source_file_part}}", 1099 "$root_out_dir/{{source_file_part}}",
1097 ] 1100 ]
1098 } 1101 }
1099 } 1102 }
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