| 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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 | 545 |
| 546 public_deps = [ | 546 public_deps = [ |
| 547 "//cc/base", | 547 "//cc/base", |
| 548 "//skia", | 548 "//skia", |
| 549 ] | 549 ] |
| 550 deps = [ | 550 deps = [ |
| 551 "//base", | 551 "//base", |
| 552 "//base/third_party/dynamic_annotations", | 552 "//base/third_party/dynamic_annotations", |
| 553 "//cc/proto", | 553 "//cc/proto", |
| 554 "//cc/surfaces:surface_id", | 554 "//cc/surfaces:surface_id", |
| 555 "//cc/surfaces:surface_sequence", |
| 555 "//gpu", | 556 "//gpu", |
| 556 "//gpu/command_buffer/client:gles2_interface", | 557 "//gpu/command_buffer/client:gles2_interface", |
| 557 "//media", | 558 "//media", |
| 558 "//ui/events:events_base", | 559 "//ui/events:events_base", |
| 559 "//ui/gfx", | 560 "//ui/gfx", |
| 560 "//ui/gfx/geometry", | 561 "//ui/gfx/geometry", |
| 561 "//ui/gl", | 562 "//ui/gl", |
| 562 ] | 563 ] |
| 563 | 564 |
| 564 defines = [ "CC_IMPLEMENTATION=1" ] | 565 defines = [ "CC_IMPLEMENTATION=1" ] |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 "//ui/gfx/geometry", | 1018 "//ui/gfx/geometry", |
| 1018 "//ui/gl", | 1019 "//ui/gl", |
| 1019 "//ui/gl:test_support", | 1020 "//ui/gl:test_support", |
| 1020 ] | 1021 ] |
| 1021 | 1022 |
| 1022 # This target should not require the Chrome executable to run. | 1023 # This target should not require the Chrome executable to run. |
| 1023 assert_no_deps = [ "//chrome" ] | 1024 assert_no_deps = [ "//chrome" ] |
| 1024 } | 1025 } |
| 1025 # When adding support for isolates, please have a look at run-time dependencies | 1026 # When adding support for isolates, please have a look at run-time dependencies |
| 1026 # in the cc_unittests_run target in cc_tests.gyp. | 1027 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |