| OLD | NEW |
| 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 sources += | 463 sources += |
| 464 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, | 464 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, |
| 465 ".", | 465 ".", |
| 466 "//chrome") | 466 "//chrome") |
| 467 } | 467 } |
| 468 } | 468 } |
| 469 if (enable_spellcheck) { | 469 if (enable_spellcheck) { |
| 470 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 470 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
| 471 ".", | 471 ".", |
| 472 "//chrome") | 472 "//chrome") |
| 473 deps += [ "//components/spellcheck/common:common" ] | 473 deps += [ |
| 474 "//components/spellcheck/browser", |
| 475 "//components/spellcheck/common:common", |
| 476 ] |
| 474 | 477 |
| 475 if (!is_android) { | 478 if (!is_android) { |
| 476 deps += [ "//third_party/hunspell" ] | 479 deps += [ "//third_party/hunspell" ] |
| 477 } | 480 } |
| 478 } | 481 } |
| 479 if (enable_nacl) { | 482 if (enable_nacl) { |
| 480 sources += | 483 sources += |
| 481 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") | 484 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") |
| 482 deps += [ "//components/nacl/browser" ] | 485 deps += [ "//components/nacl/browser" ] |
| 483 } | 486 } |
| (...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1351 # linking all of the test support. | 1354 # linking all of the test support. |
| 1352 static_library("pepper_cdm_test_constants") { | 1355 static_library("pepper_cdm_test_constants") { |
| 1353 testonly = true | 1356 testonly = true |
| 1354 visibility = [ "//chrome/*" ] | 1357 visibility = [ "//chrome/*" ] |
| 1355 sources = [ | 1358 sources = [ |
| 1356 "media/pepper_cdm_test_constants.cc", | 1359 "media/pepper_cdm_test_constants.cc", |
| 1357 "media/pepper_cdm_test_constants.h", | 1360 "media/pepper_cdm_test_constants.h", |
| 1358 ] | 1361 ] |
| 1359 } | 1362 } |
| 1360 } | 1363 } |
| OLD | NEW |