Chromium Code Reviews| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 483 "//ui/events:events_base", | 483 "//ui/events:events_base", |
| 484 "//ui/gfx", | 484 "//ui/gfx", |
| 485 "//ui/gfx/geometry", | 485 "//ui/gfx/geometry", |
| 486 ] | 486 ] |
| 487 forward_dependent_configs_from = [ | 487 forward_dependent_configs_from = [ |
| 488 "//skia", | 488 "//skia", |
| 489 ] | 489 ] |
| 490 | 490 |
| 491 defines = [ "CC_IMPLEMENTATION=1" ] | 491 defines = [ "CC_IMPLEMENTATION=1" ] |
| 492 | 492 |
| 493 if (!is_debug && is_win) { | 493 if (!is_debug && (is_win || is_android)) { |
|
brettw
2014/09/16 19:35:51
Can you think of a reason why Mac & Linux shouldn'
Fabrice (no longer in Chrome)
2014/09/16 20:05:59
That is a good point, I'm going to bring it up on
| |
| 494 configs -= [ "//build/config/compiler:optimize" ] | 494 configs -= [ "//build/config/compiler:optimize" ] |
| 495 configs += [ "//build/config/compiler:optimize_max" ] | 495 configs += [ "//build/config/compiler:optimize_max" ] |
| 496 } | 496 } |
| 497 } | 497 } |
| 498 | 498 |
| 499 source_set("test_support") { | 499 source_set("test_support") { |
| 500 testonly = true | 500 testonly = true |
| 501 sources = [ | 501 sources = [ |
| 502 "test/animation_test_common.cc", | 502 "test/animation_test_common.cc", |
| 503 "test/animation_test_common.h", | 503 "test/animation_test_common.h", |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 811 "//gpu/command_buffer/common:gles2_utils", | 811 "//gpu/command_buffer/common:gles2_utils", |
| 812 "//media", | 812 "//media", |
| 813 "//skia", | 813 "//skia", |
| 814 "//testing/gmock", | 814 "//testing/gmock", |
| 815 "//testing/gtest", | 815 "//testing/gtest", |
| 816 "//testing/perf", | 816 "//testing/perf", |
| 817 "//ui/gfx", | 817 "//ui/gfx", |
| 818 "//ui/gfx/geometry", | 818 "//ui/gfx/geometry", |
| 819 ] | 819 ] |
| 820 } | 820 } |
| OLD | NEW |