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

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

Issue 2178733002: Task manager should support Idle Wakeups on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build error on win_clang. 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
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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 ".", 492 ".",
493 "//chrome") 493 "//chrome")
494 } 494 }
495 495
496 if (is_mac && !mac_views_browser) { 496 if (is_mac && !mac_views_browser) {
497 sources += 497 sources +=
498 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources, 498 rebase_path(gypi_values.chrome_browser_old_task_manager_cocoa_sources,
499 ".", 499 ".",
500 "//chrome") 500 "//chrome")
501 } 501 }
502
503 if (is_win) {
504 sources +=
505 rebase_path(gypi_values.chrome_browser_task_manager_win_sources,
506 ".",
507 "//chrome")
508 }
ncarter (slow) 2016/07/28 21:37:26 This is unnecessary -- see comment in gypi file.
stanisc 2016/08/01 22:34:26 Done.
502 } 509 }
503 if (enable_spellcheck) { 510 if (enable_spellcheck) {
504 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources, 511 sources += rebase_path(gypi_values.chrome_browser_spellchecker_sources,
505 ".", 512 ".",
506 "//chrome") 513 "//chrome")
507 deps += [ "//components/spellcheck/common:common" ] 514 deps += [ "//components/spellcheck/common:common" ]
508 515
509 if (!is_android) { 516 if (!is_android) {
510 deps += [ "//third_party/hunspell" ] 517 deps += [ "//third_party/hunspell" ]
511 } 518 }
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 # linking all of the test support. 1388 # linking all of the test support.
1382 static_library("pepper_cdm_test_constants") { 1389 static_library("pepper_cdm_test_constants") {
1383 testonly = true 1390 testonly = true
1384 visibility = [ "//chrome/*" ] 1391 visibility = [ "//chrome/*" ]
1385 sources = [ 1392 sources = [
1386 "media/pepper_cdm_test_constants.cc", 1393 "media/pepper_cdm_test_constants.cc",
1387 "media/pepper_cdm_test_constants.h", 1394 "media/pepper_cdm_test_constants.h",
1388 ] 1395 ]
1389 } 1396 }
1390 } 1397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698