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

Side by Side Diff: chrome/browser/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 | « chrome/app/BUILD.gn ('k') | chrome/browser/nacl_host/test/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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
10 # produces a conflict for the "grit" template so we have to only include one. 10 # produces a conflict for the "grit" template so we have to only include one.
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 } 345 }
346 if (enable_spellcheck) { 346 if (enable_spellcheck) {
347 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 347 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
348 ".", 348 ".",
349 "//chrome") 349 "//chrome")
350 deps += [ "//third_party/hunspell" ] 350 deps += [ "//third_party/hunspell" ]
351 } 351 }
352 if (enable_nacl) { 352 if (enable_nacl) {
353 sources += 353 sources +=
354 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") 354 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome")
355 #deps += [ "//components/nacl:nacl_browser" ] TODO(GYP) 355 deps += [ "//components/nacl:nacl_browser" ]
356 } 356 }
357 357
358 if (enable_configuration_policy) { 358 if (enable_configuration_policy) {
359 sources += 359 sources +=
360 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources, 360 rebase_path(gypi_values.chrome_browser_policy_shared_with_ios_sources,
361 ".", 361 ".",
362 "//chrome") 362 "//chrome")
363 deps += [ 363 deps += [
364 "//components/policy", 364 "//components/policy",
365 "//components/policy/proto", 365 "//components/policy/proto",
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 ] 1099 ]
1100 } 1100 }
1101 1101
1102 if (enable_wifi_bootstrapping) { 1102 if (enable_wifi_bootstrapping) {
1103 sources += [ 1103 sources += [
1104 "local_discovery/wifi/mock_wifi_manager.cc", 1104 "local_discovery/wifi/mock_wifi_manager.cc",
1105 "local_discovery/wifi/mock_wifi_manager.h", 1105 "local_discovery/wifi/mock_wifi_manager.h",
1106 ] 1106 ]
1107 } 1107 }
1108 } 1108 }
OLDNEW
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/nacl_host/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698