| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 | 467 |
| 468 deps = [ | 468 deps = [ |
| 469 "//base", | 469 "//base", |
| 470 "//base/third_party/dynamic_annotations", | 470 "//base/third_party/dynamic_annotations", |
| 471 "//gpu", | 471 "//gpu", |
| 472 "//media", | 472 "//media", |
| 473 "//skia", | 473 "//skia", |
| 474 "//ui/events:events_base", | 474 "//ui/events:events_base", |
| 475 "//ui/gfx", | 475 "//ui/gfx", |
| 476 "//ui/gfx/geometry", | 476 "//ui/gfx/geometry", |
| 477 "//ui/gl", | |
| 478 ] | 477 ] |
| 479 forward_dependent_configs_from = [ | 478 forward_dependent_configs_from = [ |
| 480 "//skia", | 479 "//skia", |
| 481 ] | 480 ] |
| 482 | 481 |
| 483 defines = [ "CC_IMPLEMENTATION=1" ] | 482 defines = [ "CC_IMPLEMENTATION=1" ] |
| 484 | 483 |
| 485 if (!is_debug && is_win) { | 484 if (!is_debug && is_win) { |
| 486 configs -= [ "//build/config/compiler:optimize" ] | 485 configs -= [ "//build/config/compiler:optimize" ] |
| 487 configs += [ "//build/config/compiler:optimize_max" ] | 486 configs += [ "//build/config/compiler:optimize_max" ] |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 "//gpu/command_buffer/common:gles2_utils", | 797 "//gpu/command_buffer/common:gles2_utils", |
| 799 "//media", | 798 "//media", |
| 800 "//skia", | 799 "//skia", |
| 801 "//testing/gmock", | 800 "//testing/gmock", |
| 802 "//testing/gtest", | 801 "//testing/gtest", |
| 803 "//testing/perf", | 802 "//testing/perf", |
| 804 "//ui/gfx", | 803 "//ui/gfx", |
| 805 "//ui/gfx/geometry", | 804 "//ui/gfx/geometry", |
| 806 ] | 805 ] |
| 807 } | 806 } |
| OLD | NEW |