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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 if (enable_task_manager) { | 473 if (enable_task_manager) { |
474 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, | 474 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, |
475 ".", | 475 ".", |
476 "//chrome") | 476 "//chrome") |
477 if (is_chromeos) { | 477 if (is_chromeos) { |
478 sources += | 478 sources += |
479 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, | 479 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, |
480 ".", | 480 ".", |
481 "//chrome") | 481 "//chrome") |
482 } | 482 } |
| 483 |
| 484 if (is_mac && !mac_views_browser) { |
| 485 sources += |
| 486 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, |
| 487 ".", |
| 488 "//chrome") |
| 489 } |
483 } | 490 } |
484 if (enable_spellcheck) { | 491 if (enable_spellcheck) { |
485 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 492 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
486 ".", | 493 ".", |
487 "//chrome") | 494 "//chrome") |
488 if (!is_android) { | 495 if (!is_android) { |
489 deps += [ "//third_party/hunspell" ] | 496 deps += [ "//third_party/hunspell" ] |
490 } | 497 } |
491 } | 498 } |
492 if (enable_nacl) { | 499 if (enable_nacl) { |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1342 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1349 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1343 deps = [ | 1350 deps = [ |
1344 "//components/google/core/browser", | 1351 "//components/google/core/browser", |
1345 "//components/omnibox/browser", | 1352 "//components/omnibox/browser", |
1346 "//components/rlz", | 1353 "//components/rlz", |
1347 "//components/search_engines", | 1354 "//components/search_engines", |
1348 "//rlz:rlz_lib", | 1355 "//rlz:rlz_lib", |
1349 ] | 1356 ] |
1350 } | 1357 } |
1351 } | 1358 } |
OLD | NEW |