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

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

Issue 2197483003: Move the Mac Task Manager to the new backend code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/task_management/sampling/task_manager_io_thread_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/task_management/sampling/task_manager_io_thread_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698