| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 sources += | 494 sources += |
| 495 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, | 495 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, |
| 496 ".", | 496 ".", |
| 497 "//chrome") | 497 "//chrome") |
| 498 } | 498 } |
| 499 } | 499 } |
| 500 if (enable_spellcheck) { | 500 if (enable_spellcheck) { |
| 501 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 501 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
| 502 ".", | 502 ".", |
| 503 "//chrome") | 503 "//chrome") |
| 504 deps += [ "//components/spellcheck/browser", "//components/spellcheck/common
", "//content/public/common" ] |
| 505 |
| 504 if (!is_android) { | 506 if (!is_android) { |
| 505 deps += [ "//third_party/hunspell" ] | 507 deps += [ "//third_party/hunspell" ] |
| 506 } | 508 } |
| 507 } | 509 } |
| 508 if (enable_nacl) { | 510 if (enable_nacl) { |
| 509 sources += | 511 sources += |
| 510 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") | 512 rebase_path(gypi_values.chrome_browser_nacl_sources, ".", "//chrome") |
| 511 deps += [ "//components/nacl/browser" ] | 513 deps += [ "//components/nacl/browser" ] |
| 512 } | 514 } |
| 513 | 515 |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 # linking all of the test support. | 1371 # linking all of the test support. |
| 1370 static_library("pepper_cdm_test_constants") { | 1372 static_library("pepper_cdm_test_constants") { |
| 1371 testonly = true | 1373 testonly = true |
| 1372 visibility = [ "//chrome/*" ] | 1374 visibility = [ "//chrome/*" ] |
| 1373 sources = [ | 1375 sources = [ |
| 1374 "media/pepper_cdm_test_constants.cc", | 1376 "media/pepper_cdm_test_constants.cc", |
| 1375 "media/pepper_cdm_test_constants.h", | 1377 "media/pepper_cdm_test_constants.h", |
| 1376 ] | 1378 ] |
| 1377 } | 1379 } |
| 1378 } | 1380 } |
| OLD | NEW |