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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "quads/content_draw_quad_base.cc", | 282 "quads/content_draw_quad_base.cc", |
283 "quads/content_draw_quad_base.h", | 283 "quads/content_draw_quad_base.h", |
284 "quads/debug_border_draw_quad.cc", | 284 "quads/debug_border_draw_quad.cc", |
285 "quads/debug_border_draw_quad.h", | 285 "quads/debug_border_draw_quad.h", |
286 "quads/draw_polygon.cc", | 286 "quads/draw_polygon.cc", |
287 "quads/draw_polygon.h", | 287 "quads/draw_polygon.h", |
288 "quads/draw_quad.cc", | 288 "quads/draw_quad.cc", |
289 "quads/draw_quad.h", | 289 "quads/draw_quad.h", |
290 "quads/io_surface_draw_quad.cc", | 290 "quads/io_surface_draw_quad.cc", |
291 "quads/io_surface_draw_quad.h", | 291 "quads/io_surface_draw_quad.h", |
| 292 "quads/largest_draw_quad.h", |
292 "quads/picture_draw_quad.cc", | 293 "quads/picture_draw_quad.cc", |
293 "quads/picture_draw_quad.h", | 294 "quads/picture_draw_quad.h", |
294 "quads/render_pass.cc", | 295 "quads/render_pass.cc", |
295 "quads/render_pass.h", | 296 "quads/render_pass.h", |
296 "quads/render_pass_draw_quad.cc", | 297 "quads/render_pass_draw_quad.cc", |
297 "quads/render_pass_draw_quad.h", | 298 "quads/render_pass_draw_quad.h", |
298 "quads/shared_quad_state.cc", | 299 "quads/shared_quad_state.cc", |
299 "quads/shared_quad_state.h", | 300 "quads/shared_quad_state.h", |
300 "quads/solid_color_draw_quad.cc", | 301 "quads/solid_color_draw_quad.cc", |
301 "quads/solid_color_draw_quad.h", | 302 "quads/solid_color_draw_quad.h", |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 "//gpu:test_support", | 796 "//gpu:test_support", |
796 "//media", | 797 "//media", |
797 "//skia", | 798 "//skia", |
798 "//testing/gmock", | 799 "//testing/gmock", |
799 "//testing/gtest", | 800 "//testing/gtest", |
800 "//testing/perf", | 801 "//testing/perf", |
801 "//ui/gfx", | 802 "//ui/gfx", |
802 "//ui/gfx/geometry", | 803 "//ui/gfx/geometry", |
803 ] | 804 ] |
804 } | 805 } |
OLD | NEW |