Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1912773002: Remove the old task manager view (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile error 3 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 if (enable_task_manager) { 470 if (enable_task_manager) {
471 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources, 471 sources += rebase_path(gypi_values.chrome_browser_task_manager_sources,
472 ".", 472 ".",
473 "//chrome") 473 "//chrome")
474 if (is_chromeos) { 474 if (is_chromeos) {
475 sources += 475 sources +=
476 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources, 476 rebase_path(gypi_values.chrome_browser_task_manager_chromeos_sources,
477 ".", 477 ".",
478 "//chrome") 478 "//chrome")
479 } 479 }
480
481 if (is_mac && !mac_views_browser) {
482 sources +=
483 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources,
484 ".",
485 "//chrome")
486 }
480 } 487 }
481 if (enable_spellcheck) { 488 if (enable_spellcheck) {
482 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 489 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
483 ".", 490 ".",
484 "//chrome") 491 "//chrome")
485 if (!is_android) { 492 if (!is_android) {
486 deps += [ "//third_party/hunspell" ] 493 deps += [ "//third_party/hunspell" ]
487 } 494 }
488 } 495 }
489 if (enable_nacl) { 496 if (enable_nacl) {
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1332 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1326 deps = [ 1333 deps = [
1327 "//components/google/core/browser", 1334 "//components/google/core/browser",
1328 "//components/omnibox/browser", 1335 "//components/omnibox/browser",
1329 "//components/rlz", 1336 "//components/rlz",
1330 "//components/search_engines", 1337 "//components/search_engines",
1331 "//rlz:rlz_lib", 1338 "//rlz:rlz_lib",
1332 ] 1339 ]
1333 } 1340 }
1334 } 1341 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698