Chromium Code Reviews| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 506 "trees/draw_property_utils.h", | 506 "trees/draw_property_utils.h", |
| 507 "trees/layer_sorter.cc", | 507 "trees/layer_sorter.cc", |
| 508 "trees/layer_sorter.h", | 508 "trees/layer_sorter.h", |
| 509 "trees/layer_tree_host.cc", | 509 "trees/layer_tree_host.cc", |
| 510 "trees/layer_tree_host.h", | 510 "trees/layer_tree_host.h", |
| 511 "trees/layer_tree_host_client.h", | 511 "trees/layer_tree_host_client.h", |
| 512 "trees/layer_tree_host_common.cc", | 512 "trees/layer_tree_host_common.cc", |
| 513 "trees/layer_tree_host_common.h", | 513 "trees/layer_tree_host_common.h", |
| 514 "trees/layer_tree_host_impl.cc", | 514 "trees/layer_tree_host_impl.cc", |
| 515 "trees/layer_tree_host_impl.h", | 515 "trees/layer_tree_host_impl.h", |
| 516 "trees/layer_tree_host_single_thread_client.h", | |
|
danakj
2015/03/11 17:23:12
Looks like these buildfile changes aren't needed a
ccameron
2015/03/11 21:46:43
True, not needed, but IIUC these .h files should h
| |
| 516 "trees/layer_tree_impl.cc", | 517 "trees/layer_tree_impl.cc", |
| 517 "trees/layer_tree_impl.h", | 518 "trees/layer_tree_impl.h", |
| 518 "trees/layer_tree_settings.cc", | 519 "trees/layer_tree_settings.cc", |
| 519 "trees/layer_tree_settings.h", | 520 "trees/layer_tree_settings.h", |
| 520 "trees/occlusion.cc", | 521 "trees/occlusion.cc", |
| 521 "trees/occlusion.h", | 522 "trees/occlusion.h", |
| 522 "trees/occlusion_tracker.cc", | 523 "trees/occlusion_tracker.cc", |
| 523 "trees/occlusion_tracker.h", | 524 "trees/occlusion_tracker.h", |
| 524 "trees/property_tree.cc", | 525 "trees/property_tree.cc", |
| 525 "trees/property_tree.h", | 526 "trees/property_tree.h", |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 921 "//testing/gmock", | 922 "//testing/gmock", |
| 922 "//testing/gtest", | 923 "//testing/gtest", |
| 923 "//testing/perf", | 924 "//testing/perf", |
| 924 "//ui/gfx", | 925 "//ui/gfx", |
| 925 "//ui/gfx/geometry", | 926 "//ui/gfx/geometry", |
| 926 "//ui/gl", | 927 "//ui/gl", |
| 927 ] | 928 ] |
| 928 } | 929 } |
| 929 # When adding support for isolates, please have a look at run-time dependencies | 930 # When adding support for isolates, please have a look at run-time dependencies |
| 930 # in the cc_unittests_run target in cc_tests.gyp. | 931 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |