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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2166683003: Componentize spellcheck [1]: create component and move switches there. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | chrome/browser/about_flags.cc » ('j') | components/spellcheck/OWNERS » ('J')
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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 sources += 495 sources +=
496 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, 496 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources,
497 ".", 497 ".",
498 "//chrome") 498 "//chrome")
499 } 499 }
500 } 500 }
501 if (enable_spellcheck) { 501 if (enable_spellcheck) {
502 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 502 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
503 ".", 503 ".",
504 "//chrome") 504 "//chrome")
505 deps += [ "//components/spellcheck/common:common" ]
506
505 if (!is_android) { 507 if (!is_android) {
506 deps += [ "//third_party/hunspell" ] 508 deps += [ "//third_party/hunspell" ]
507 } 509 }
508 } 510 }
509 if (enable_nacl) { 511 if (enable_nacl) {
510 sources += 512 sources +=
511 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") 513 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome")
512 deps += [ "//components/nacl/browser" ] 514 deps += [ "//components/nacl/browser" ]
513 } 515 }
514 516
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 # linking all of the test support. 1374 # linking all of the test support.
1373 static_library("pepper_cdm_test_constants") { 1375 static_library("pepper_cdm_test_constants") {
1374 testonly = true 1376 testonly = true
1375 visibility = [ "//chrome/*" ] 1377 visibility = [ "//chrome/*" ]
1376 sources = [ 1378 sources = [
1377 "media/pepper_cdm_test_constants.cc", 1379 "media/pepper_cdm_test_constants.cc",
1378 "media/pepper_cdm_test_constants.h", 1380 "media/pepper_cdm_test_constants.h",
1379 ] 1381 ]
1380 } 1382 }
1381 } 1383 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | components/spellcheck/OWNERS » ('J')

Powered by Google App Engine
This is Rietveld 408576698