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

Side by Side Diff: cc/BUILD.gn

Issue 420443003: GN foreach should mark the list identifier as used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | media/BUILD.gn » ('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 component("cc") { 5 component("cc") {
6 sources = [ 6 sources = [
7 "animation/animation.cc", 7 "animation/animation.cc",
8 "animation/animation.h", 8 "animation/animation.h",
9 "animation/animation_curve.cc", 9 "animation/animation_curve.cc",
10 "animation/animation_curve.h", 10 "animation/animation_curve.h",
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 "//skia", 466 "//skia",
467 "//ui/events:events_base", 467 "//ui/events:events_base",
468 "//ui/gfx", 468 "//ui/gfx",
469 "//ui/gfx/geometry", 469 "//ui/gfx/geometry",
470 "//ui/gl", 470 "//ui/gl",
471 ] 471 ]
472 forward_dependent_configs_from = [ 472 forward_dependent_configs_from = [
473 "//skia", 473 "//skia",
474 ] 474 ]
475 475
476 defined = [ "CC_IMPLEMENTATION=1" ] 476 defines = [ "CC_IMPLEMENTATION=1" ]
477 477
478 if (!is_debug && is_win) { 478 if (!is_debug && is_win) {
479 configs -= [ "//build/config/compiler:optimize" ] 479 configs -= [ "//build/config/compiler:optimize" ]
480 configs += [ "//build/config/compiler:optimize_max" ] 480 configs += [ "//build/config/compiler:optimize_max" ]
481 } 481 }
482 } 482 }
483 483
484 source_set("test_support") { 484 source_set("test_support") {
485 sources = [ 485 sources = [
486 "test/animation_test_common.cc", 486 "test/animation_test_common.cc",
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 "//gpu:test_support", 787 "//gpu:test_support",
788 "//media", 788 "//media",
789 "//skia", 789 "//skia",
790 "//testing/gmock", 790 "//testing/gmock",
791 "//testing/gtest", 791 "//testing/gtest",
792 "//testing/perf", 792 "//testing/perf",
793 "//ui/gfx", 793 "//ui/gfx",
794 "//ui/gfx/geometry", 794 "//ui/gfx/geometry",
795 ] 795 ]
796 } 796 }
OLDNEW
« no previous file with comments | « no previous file | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698