| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 if (enable_task_manager) { | 472 if (enable_task_manager) { |
| 473 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, | 473 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, |
| 474 ".", | 474 ".", |
| 475 "//chrome") | 475 "//chrome") |
| 476 if (is_chromeos) { | 476 if (is_chromeos) { |
| 477 sources += | 477 sources += |
| 478 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, | 478 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, |
| 479 ".", | 479 ".", |
| 480 "//chrome") | 480 "//chrome") |
| 481 } | 481 } |
| 482 |
| 483 if (is_mac) { |
| 484 sources += |
| 485 rebase_path(gypi_values.chrome_browser_old_task_manager_mac_sources, |
| 486 ".", |
| 487 "//chrome") |
| 488 } |
| 482 } | 489 } |
| 483 if (enable_spellcheck) { | 490 if (enable_spellcheck) { |
| 484 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, | 491 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, |
| 485 ".", | 492 ".", |
| 486 "//chrome") | 493 "//chrome") |
| 487 if (!is_android) { | 494 if (!is_android) { |
| 488 deps += [ "//third_party/hunspell" ] | 495 deps += [ "//third_party/hunspell" ] |
| 489 } | 496 } |
| 490 } | 497 } |
| 491 if (enable_nacl) { | 498 if (enable_nacl) { |
| (...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1341 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1335 deps = [ | 1342 deps = [ |
| 1336 "//components/google/core/browser", | 1343 "//components/google/core/browser", |
| 1337 "//components/omnibox/browser", | 1344 "//components/omnibox/browser", |
| 1338 "//components/rlz", | 1345 "//components/rlz", |
| 1339 "//components/search_engines", | 1346 "//components/search_engines", |
| 1340 "//rlz:rlz_lib", | 1347 "//rlz:rlz_lib", |
| 1341 ] | 1348 ] |
| 1342 } | 1349 } |
| 1343 } | 1350 } |
| OLD | NEW |