| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 | 488 |
| 489 defines = [ "CC_IMPLEMENTATION=1" ] | 489 defines = [ "CC_IMPLEMENTATION=1" ] |
| 490 | 490 |
| 491 if (!is_debug && is_win) { | 491 if (!is_debug && is_win) { |
| 492 configs -= [ "//build/config/compiler:optimize" ] | 492 configs -= [ "//build/config/compiler:optimize" ] |
| 493 configs += [ "//build/config/compiler:optimize_max" ] | 493 configs += [ "//build/config/compiler:optimize_max" ] |
| 494 } | 494 } |
| 495 } | 495 } |
| 496 | 496 |
| 497 source_set("test_support") { | 497 source_set("test_support") { |
| 498 testonly = true |
| 498 sources = [ | 499 sources = [ |
| 499 "test/animation_test_common.cc", | 500 "test/animation_test_common.cc", |
| 500 "test/animation_test_common.h", | 501 "test/animation_test_common.h", |
| 501 "test/begin_frame_args_test.cc", | 502 "test/begin_frame_args_test.cc", |
| 502 "test/begin_frame_args_test.h", | 503 "test/begin_frame_args_test.h", |
| 503 "test/fake_content_layer.cc", | 504 "test/fake_content_layer.cc", |
| 504 "test/fake_content_layer.h", | 505 "test/fake_content_layer.h", |
| 505 "test/fake_content_layer_client.cc", | 506 "test/fake_content_layer_client.cc", |
| 506 "test/fake_content_layer_client.h", | 507 "test/fake_content_layer_client.h", |
| 507 "test/fake_content_layer_impl.cc", | 508 "test/fake_content_layer_impl.cc", |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 "//gpu/command_buffer/common:gles2_utils", | 807 "//gpu/command_buffer/common:gles2_utils", |
| 807 "//media", | 808 "//media", |
| 808 "//skia", | 809 "//skia", |
| 809 "//testing/gmock", | 810 "//testing/gmock", |
| 810 "//testing/gtest", | 811 "//testing/gtest", |
| 811 "//testing/perf", | 812 "//testing/perf", |
| 812 "//ui/gfx", | 813 "//ui/gfx", |
| 813 "//ui/gfx/geometry", | 814 "//ui/gfx/geometry", |
| 814 ] | 815 ] |
| 815 } | 816 } |
| OLD | NEW |