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

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

Issue 2244083002: Componentize spellcheck [4]: spellcheck/browser and android java-side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 sources += 464 sources +=
465 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, 465 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources,
466 ".", 466 ".",
467 "//chrome") 467 "//chrome")
468 } 468 }
469 } 469 }
470 if (enable_spellcheck) { 470 if (enable_spellcheck) {
471 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 471 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
472 ".", 472 ".",
473 "//chrome") 473 "//chrome")
474 deps += [ "//components/spellcheck/common:common" ] 474 deps += [
475 "//components/spellcheck/browser",
476 "//components/spellcheck/common:common",
477 ]
475 478
476 if (!is_android) { 479 if (!is_android) {
477 deps += [ "//third_party/hunspell" ] 480 deps += [ "//third_party/hunspell" ]
478 } 481 }
479 } 482 }
480 if (enable_nacl) { 483 if (enable_nacl) {
481 sources += 484 sources +=
482 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") 485 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome")
483 deps += [ "//components/nacl/browser" ] 486 deps += [ "//components/nacl/browser" ]
484 } 487 }
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 # linking all of the test support. 1355 # linking all of the test support.
1353 static_library("pepper_cdm_test_constants") { 1356 static_library("pepper_cdm_test_constants") {
1354 testonly = true 1357 testonly = true
1355 visibility = [ "//chrome/*" ] 1358 visibility = [ "//chrome/*" ]
1356 sources = [ 1359 sources = [
1357 "media/pepper_cdm_test_constants.cc", 1360 "media/pepper_cdm_test_constants.cc",
1358 "media/pepper_cdm_test_constants.h", 1361 "media/pepper_cdm_test_constants.h",
1359 ] 1362 ]
1360 } 1363 }
1361 } 1364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698