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

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: merge to #317924 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
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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 738
739 args = [ 739 args = [
740 rebase_path(infile, root_build_dir), 740 rebase_path(infile, root_build_dir),
741 rebase_path(outfile, root_build_dir), 741 rebase_path(outfile, root_build_dir),
742 "-e s/@@NAME@@/$name/", 742 "-e s/@@NAME@@/$name/",
743 "-e s/@@FILENAME@@/$filename/", 743 "-e s/@@FILENAME@@/$filename/",
744 "-e s/@@CONFDIR@@/$confdir/", 744 "-e s/@@CONFDIR@@/$confdir/",
745 ] 745 ]
746 } 746 }
747 } 747 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698