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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 | 558 |
559 public_deps = [ | 559 public_deps = [ |
560 "//cc/base", | 560 "//cc/base", |
561 "//skia", | 561 "//skia", |
562 ] | 562 ] |
563 deps = [ | 563 deps = [ |
564 "//base", | 564 "//base", |
565 "//base/third_party/dynamic_annotations", | 565 "//base/third_party/dynamic_annotations", |
566 "//cc/proto", | 566 "//cc/proto", |
567 "//cc/surfaces:surface_id", | 567 "//cc/surfaces:surface_id", |
| 568 "//components/memory_coordinator/common:common", |
568 "//gpu", | 569 "//gpu", |
569 "//gpu/command_buffer/client:gles2_interface", | 570 "//gpu/command_buffer/client:gles2_interface", |
570 "//media", | 571 "//media", |
571 "//ui/events:events_base", | 572 "//ui/events:events_base", |
572 "//ui/gfx", | 573 "//ui/gfx", |
573 "//ui/gfx/geometry", | 574 "//ui/gfx/geometry", |
574 "//ui/gl", | 575 "//ui/gl", |
575 ] | 576 ] |
576 | 577 |
577 defines = [ "CC_IMPLEMENTATION=1" ] | 578 defines = [ "CC_IMPLEMENTATION=1" ] |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1033 "//ui/gfx/geometry", | 1034 "//ui/gfx/geometry", |
1034 "//ui/gl", | 1035 "//ui/gl", |
1035 "//ui/gl:test_support", | 1036 "//ui/gl:test_support", |
1036 ] | 1037 ] |
1037 | 1038 |
1038 # This target should not require the Chrome executable to run. | 1039 # This target should not require the Chrome executable to run. |
1039 assert_no_deps = [ "//chrome" ] | 1040 assert_no_deps = [ "//chrome" ] |
1040 } | 1041 } |
1041 # When adding support for isolates, please have a look at run-time dependencies | 1042 # When adding support for isolates, please have a look at run-time dependencies |
1042 # in the cc_unittests_run target in cc_tests.gyp. | 1043 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |