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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
518 deps = [ | 518 deps = [ |
519 "//base", | 519 "//base", |
520 "//base/third_party/dynamic_annotations", | 520 "//base/third_party/dynamic_annotations", |
521 "//cc/surfaces:surface_id", | 521 "//cc/surfaces:surface_id", |
522 "//gpu", | 522 "//gpu", |
523 "//gpu/command_buffer/client:gles2_interface", | 523 "//gpu/command_buffer/client:gles2_interface", |
524 "//media", | 524 "//media", |
525 "//ui/events:events_base", | 525 "//ui/events:events_base", |
526 "//ui/gfx", | 526 "//ui/gfx", |
527 "//ui/gfx/geometry", | 527 "//ui/gfx/geometry", |
528 "//ui/gl", | |
ericrk
2015/07/28 21:02:32
put the GL object GUID generation stuff in ui/gl/t
| |
528 ] | 529 ] |
529 | 530 |
530 defines = [ "CC_IMPLEMENTATION=1" ] | 531 defines = [ "CC_IMPLEMENTATION=1" ] |
531 | 532 |
532 if (!is_debug && (is_win || is_android)) { | 533 if (!is_debug && (is_win || is_android)) { |
533 configs -= [ "//build/config/compiler:optimize" ] | 534 configs -= [ "//build/config/compiler:optimize" ] |
534 configs += [ "//build/config/compiler:optimize_max" ] | 535 configs += [ "//build/config/compiler:optimize_max" ] |
535 } | 536 } |
536 } | 537 } |
537 | 538 |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
916 "//ui/gl", | 917 "//ui/gl", |
917 "//ui/gl:test_support", | 918 "//ui/gl:test_support", |
918 ] | 919 ] |
919 | 920 |
920 if (is_android) { | 921 if (is_android) { |
921 isolate_file = "cc_perftests.isolate" | 922 isolate_file = "cc_perftests.isolate" |
922 } | 923 } |
923 } | 924 } |
924 # When adding support for isolates, please have a look at run-time dependencies | 925 # When adding support for isolates, please have a look at run-time dependencies |
925 # in the cc_unittests_run target in cc_tests.gyp. | 926 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |