| 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 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |