| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |