| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 if (enable_task_manager) { | 484 if (enable_task_manager) { |
| 485 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, | 485 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, |
| 486 ".", | 486 ".", |
| 487 "//chrome") | 487 "//chrome") |
| 488 if (is_chromeos) { | 488 if (is_chromeos) { |
| 489 sources += | 489 sources += |
| 490 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, | 490 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, |
| 491 ".", | 491 ".", |
| 492 "//chrome") | 492 "//chrome") |
| 493 } | 493 } |
| 494 | |
| 495 if (is_mac && !mac_views_browser) { | |
| 496 sources += | |
| 497 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, | |
| 498 ".", | |
| 499 "//chrome") | |
| 500 } | |
| 501 } | 494 } |
| 502 if (enable_spellcheck) { | 495 if (enable_spellcheck) { |
| 503 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 496 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
| 504 ".", | 497 ".", |
| 505 "//chrome") | 498 "//chrome") |
| 506 deps += [ "//components/spellcheck/common:common" ] | 499 deps += [ "//components/spellcheck/common:common" ] |
| 507 | 500 |
| 508 if (!is_android) { | 501 if (!is_android) { |
| 509 deps += [ "//third_party/hunspell" ] | 502 deps += [ "//third_party/hunspell" ] |
| 510 } | 503 } |
| (...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 # linking all of the test support. | 1375 # linking all of the test support. |
| 1383 static_library("pepper_cdm_test_constants") { | 1376 static_library("pepper_cdm_test_constants") { |
| 1384 testonly = true | 1377 testonly = true |
| 1385 visibility = [ "//chrome/*" ] | 1378 visibility = [ "//chrome/*" ] |
| 1386 sources = [ | 1379 sources = [ |
| 1387 "media/pepper_cdm_test_constants.cc", | 1380 "media/pepper_cdm_test_constants.cc", |
| 1388 "media/pepper_cdm_test_constants.h", | 1381 "media/pepper_cdm_test_constants.h", |
| 1389 ] | 1382 ] |
| 1390 } | 1383 } |
| 1391 } | 1384 } |
| OLD | NEW |