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

Side by Side Diff: extensions/shell/BUILD.gn

Issue 974543002: Remove link_chrome_on_windows GN flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « content/test/BUILD.gn ('k') | google_apis/BUILD.gn » ('j') | 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("//extensions/shell/app_shell.gni") 5 import("//extensions/shell/app_shell.gni")
6 6
7 # Technically, this directory should not depend on files from src/chrome, but 7 # Technically, this directory should not depend on files from src/chrome, but
8 # that's where the VERSION file is. This should probably all be moved to 8 # that's where the VERSION file is. This should probably all be moved to
9 # src/build. 9 # src/build.
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "//components/nacl:nacl_switches", 120 "//components/nacl:nacl_switches",
121 "//components/nacl/renderer/plugin:nacl_trusted_plugin", 121 "//components/nacl/renderer/plugin:nacl_trusted_plugin",
122 ] 122 ]
123 123
124 if (is_linux) { 124 if (is_linux) {
125 deps += [ "//components/nacl:nacl_helper" ] 125 deps += [ "//components/nacl:nacl_helper" ]
126 } 126 }
127 } 127 }
128 } 128 }
129 129
130 if (!(is_chromeos && !use_ozone) && (!is_win || link_chrome_on_windows)) { 130 if (!(is_chromeos && !use_ozone)) {
131 executable("app_shell") { 131 executable("app_shell") {
132 # testonly because :app_shell_lib is testonly. See :app_shell_lib comment. 132 # testonly because :app_shell_lib is testonly. See :app_shell_lib comment.
133 testonly = true 133 testonly = true
134 sources = rebase_path(app_shell_gypi_values.app_shell_sources, 134 sources = rebase_path(app_shell_gypi_values.app_shell_sources,
135 ".", 135 ".",
136 "//extensions/shell") 136 "//extensions/shell")
137 deps = [ 137 deps = [
138 ":app_shell_lib", 138 ":app_shell_lib",
139 "//extensions:shell_and_test_pak", 139 "//extensions:shell_and_test_pak",
140 ] 140 ]
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 199
200 if (is_win) { 200 if (is_win) {
201 deps += [ "//base/allocator" ] 201 deps += [ "//base/allocator" ]
202 } 202 }
203 } 203 }
204 204
205 process_version("version_header") { 205 process_version("version_header") {
206 template_file = "common/version.h.in" 206 template_file = "common/version.h.in"
207 output = "$target_gen_dir/common/version.h" 207 output = "$target_gen_dir/common/version.h"
208 } 208 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | google_apis/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698