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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
560 | 560 |
561 public_deps = [ | 561 public_deps = [ |
562 "//cc/base", | 562 "//cc/base", |
563 "//skia", | 563 "//skia", |
564 ] | 564 ] |
565 deps = [ | 565 deps = [ |
566 "//base", | 566 "//base", |
567 "//base/third_party/dynamic_annotations", | 567 "//base/third_party/dynamic_annotations", |
568 "//cc/proto", | 568 "//cc/proto", |
569 "//cc/surfaces:surface_id", | 569 "//cc/surfaces:surface_id", |
570 "//components/memory_coordinator/child", | |
tasak
2016/09/01 09:39:32
I made a mistake. We don't need this.
| |
571 "//components/memory_coordinator/common:common", | |
570 "//gpu", | 572 "//gpu", |
571 "//gpu/command_buffer/client:gles2_interface", | 573 "//gpu/command_buffer/client:gles2_interface", |
572 "//media", | 574 "//media", |
573 "//ui/events:events_base", | 575 "//ui/events:events_base", |
574 "//ui/gfx", | 576 "//ui/gfx", |
575 "//ui/gfx/geometry", | 577 "//ui/gfx/geometry", |
576 "//ui/gl", | 578 "//ui/gl", |
577 ] | 579 ] |
578 | 580 |
579 defines = [ "CC_IMPLEMENTATION=1" ] | 581 defines = [ "CC_IMPLEMENTATION=1" ] |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1036 "//ui/gfx/geometry", | 1038 "//ui/gfx/geometry", |
1037 "//ui/gl", | 1039 "//ui/gl", |
1038 "//ui/gl:test_support", | 1040 "//ui/gl:test_support", |
1039 ] | 1041 ] |
1040 | 1042 |
1041 # This target should not require the Chrome executable to run. | 1043 # This target should not require the Chrome executable to run. |
1042 assert_no_deps = [ "//chrome" ] | 1044 assert_no_deps = [ "//chrome" ] |
1043 } | 1045 } |
1044 # When adding support for isolates, please have a look at run-time dependencies | 1046 # When adding support for isolates, please have a look at run-time dependencies |
1045 # in the cc_unittests_run target in cc_tests.gyp. | 1047 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |