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

Side by Side Diff: chrome/BUILD.gn

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yet more feedback Created 5 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 | « build/config/features.gni ('k') | chrome/app/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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "//chrome/renderer", 272 "//chrome/renderer",
273 "//chrome/utility", 273 "//chrome/utility",
274 "//content/public/child", 274 "//content/public/child",
275 "//third_party/WebKit/public:blink_devtools_frontend_resources", 275 "//third_party/WebKit/public:blink_devtools_frontend_resources",
276 ] 276 ]
277 } 277 }
278 if (cld_version == 0 || cld_version == 2) { 278 if (cld_version == 0 || cld_version == 2) {
279 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 279 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
280 } 280 }
281 281
282 # TODO(gyp) if (enable_nacl) { 282 if (enable_nacl) {
283 # deps += [ "<(DEPTH)/components/nacl/renderer/plugin/plugin.gyp:nacl_trusted _plugin" ] 283 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
284 #} 284 }
285 if (enable_remoting) { 285 if (enable_remoting) {
286 deps += [ "//remoting/client/plugin" ] 286 deps += [ "//remoting/client/plugin" ]
287 } 287 }
288 } 288 }
289 289
290 if (is_win) { 290 if (is_win) {
291 # TODO(brettw) this duplicates "//chrome/common:version" which applies to 291 # TODO(brettw) this duplicates "//chrome/common:version" which applies to
292 # Linux. 292 # Linux.
293 process_version("version_header") { 293 process_version("version_header") {
294 # TODO(brettW) this should have more reduced visibility, but chrome/browser 294 # TODO(brettW) this should have more reduced visibility, but chrome/browser
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 733
734 args = [ 734 args = [
735 rebase_path(infile, root_build_dir), 735 rebase_path(infile, root_build_dir),
736 rebase_path(outfile, root_build_dir), 736 rebase_path(outfile, root_build_dir),
737 "-e s/@@NAME@@/$name/", 737 "-e s/@@NAME@@/$name/",
738 "-e s/@@FILENAME@@/$filename/", 738 "-e s/@@FILENAME@@/$filename/",
739 "-e s/@@CONFDIR@@/$confdir/", 739 "-e s/@@CONFDIR@@/$confdir/",
740 ] 740 ]
741 } 741 }
742 } 742 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698