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