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

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: rebase + --no-find-copies Created 4 years, 4 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') | 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/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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 sources += 496 sources +=
497 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, 497 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources,
498 ".", 498 ".",
499 "//chrome") 499 "//chrome")
500 } 500 }
501 } 501 }
502 if (enable_spellcheck) { 502 if (enable_spellcheck) {
503 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 503 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
504 ".", 504 ".",
505 "//chrome") 505 "//chrome")
506 deps += [ "//components/spellcheck/common:common" ]
507
506 if (!is_android) { 508 if (!is_android) {
507 deps += [ "//third_party/hunspell" ] 509 deps += [ "//third_party/hunspell" ]
508 } 510 }
509 } 511 }
510 if (enable_nacl) { 512 if (enable_nacl) {
511 sources += 513 sources +=
512 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") 514 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome")
513 deps += [ "//components/nacl/browser" ] 515 deps += [ "//components/nacl/browser" ]
514 } 516 }
515 517
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 # linking all of the test support. 1380 # linking all of the test support.
1379 static_library("pepper_cdm_test_constants") { 1381 static_library("pepper_cdm_test_constants") {
1380 testonly = true 1382 testonly = true
1381 visibility = [ "//chrome/*" ] 1383 visibility = [ "//chrome/*" ]
1382 sources = [ 1384 sources = [
1383 "media/pepper_cdm_test_constants.cc", 1385 "media/pepper_cdm_test_constants.cc",
1384 "media/pepper_cdm_test_constants.h", 1386 "media/pepper_cdm_test_constants.h",
1385 ] 1387 ]
1386 } 1388 }
1387 } 1389 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698