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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 deps = [ | 523 deps = [ |
524 "//base", | 524 "//base", |
525 "//base/third_party/dynamic_annotations", | 525 "//base/third_party/dynamic_annotations", |
526 "//cc/surfaces:surface_id", | 526 "//cc/surfaces:surface_id", |
527 "//gpu", | 527 "//gpu", |
528 "//gpu/command_buffer/client:gles2_interface", | 528 "//gpu/command_buffer/client:gles2_interface", |
529 "//media", | 529 "//media", |
530 "//ui/events:events_base", | 530 "//ui/events:events_base", |
531 "//ui/gfx", | 531 "//ui/gfx", |
532 "//ui/gfx/geometry", | 532 "//ui/gfx/geometry", |
| 533 "//ui/gl", |
533 ] | 534 ] |
534 | 535 |
535 defines = [ "CC_IMPLEMENTATION=1" ] | 536 defines = [ "CC_IMPLEMENTATION=1" ] |
536 | 537 |
537 if (!is_debug && (is_win || is_android)) { | 538 if (!is_debug && (is_win || is_android)) { |
538 configs -= [ "//build/config/compiler:optimize" ] | 539 configs -= [ "//build/config/compiler:optimize" ] |
539 configs += [ "//build/config/compiler:optimize_max" ] | 540 configs += [ "//build/config/compiler:optimize_max" ] |
540 } | 541 } |
541 } | 542 } |
542 | 543 |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 "//ui/gl", | 924 "//ui/gl", |
924 "//ui/gl:test_support", | 925 "//ui/gl:test_support", |
925 ] | 926 ] |
926 | 927 |
927 if (is_android) { | 928 if (is_android) { |
928 isolate_file = "cc_perftests.isolate" | 929 isolate_file = "cc_perftests.isolate" |
929 } | 930 } |
930 } | 931 } |
931 # When adding support for isolates, please have a look at run-time dependencies | 932 # When adding support for isolates, please have a look at run-time dependencies |
932 # in the cc_unittests_run target in cc_tests.gyp. | 933 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |