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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 "//skia", | 576 "//skia", |
577 ] | 577 ] |
578 deps = [ | 578 deps = [ |
579 "//base", | 579 "//base", |
580 "//base/third_party/dynamic_annotations", | 580 "//base/third_party/dynamic_annotations", |
581 "//cc/proto", | 581 "//cc/proto", |
582 "//cc/surfaces:surface_id", | 582 "//cc/surfaces:surface_id", |
583 "//gpu", | 583 "//gpu", |
584 "//gpu/command_buffer/client:gles2_interface", | 584 "//gpu/command_buffer/client:gles2_interface", |
585 "//media", | 585 "//media", |
| 586 "//third_party/libyuv", |
586 "//ui/events:events_base", | 587 "//ui/events:events_base", |
587 "//ui/gfx", | 588 "//ui/gfx", |
588 "//ui/gfx/geometry", | 589 "//ui/gfx/geometry", |
589 "//ui/gl", | 590 "//ui/gl", |
590 ] | 591 ] |
591 | 592 |
592 defines = [ "CC_IMPLEMENTATION=1" ] | 593 defines = [ "CC_IMPLEMENTATION=1" ] |
593 | 594 |
594 if (!is_debug && (is_win || is_android)) { | 595 if (!is_debug && (is_win || is_android)) { |
595 configs -= [ "//build/config/compiler:default_optimization" ] | 596 configs -= [ "//build/config/compiler:default_optimization" ] |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 "//ui/gl:test_support", | 1061 "//ui/gl:test_support", |
1061 ] | 1062 ] |
1062 | 1063 |
1063 # This target should not require the Chrome executable to run. | 1064 # This target should not require the Chrome executable to run. |
1064 assert_no_deps = [ "//chrome" ] | 1065 assert_no_deps = [ "//chrome" ] |
1065 | 1066 |
1066 data = [ | 1067 data = [ |
1067 "test/data/", | 1068 "test/data/", |
1068 ] | 1069 ] |
1069 } | 1070 } |
OLD | NEW |