Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 '<(DEPTH)/skia/skia.gyp:skia', | 80 '<(DEPTH)/skia/skia.gyp:skia', |
| 81 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', | 81 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
| 82 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 82 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 84 '<(DEPTH)/ui/gl/gl.gyp:gl', | 84 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 85 '<(DEPTH)/ui/ui.gyp:ui', | 85 '<(DEPTH)/ui/ui.gyp:ui', |
| 86 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 86 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 87 'compositor', | 87 'compositor', |
| 88 ], | 88 ], |
| 89 'sources': [ | 89 'sources': [ |
| 90 'test/layer_animator_test_controller.cc', | |
| 91 'test/layer_animator_test_controller.h', | |
| 90 'test/test_layers.cc', | 92 'test/test_layers.cc', |
| 91 'test/test_layers.h', | 93 'test/test_layers.h', |
| 92 'test/test_context_factory.cc', | 94 'test/test_context_factory.cc', |
| 93 'test/test_context_factory.h', | 95 'test/test_context_factory.h', |
| 94 'test/default_context_factory.cc', | 96 'test/default_context_factory.cc', |
| 95 'test/default_context_factory.h', | 97 'test/default_context_factory.h', |
| 96 'test/context_factories_for_test.cc', | 98 'test/context_factories_for_test.cc', |
| 97 'test/context_factories_for_test.h', | 99 'test/context_factories_for_test.h', |
| 98 'test/test_suite.cc', | 100 'test/test_suite.cc', |
| 99 'test/test_suite.h', | 101 'test/test_suite.h', |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 116 '<(DEPTH)/ui/ui.gyp:ui', | 118 '<(DEPTH)/ui/ui.gyp:ui', |
| 117 'compositor', | 119 'compositor', |
| 118 'compositor_test_support', | 120 'compositor_test_support', |
| 119 ], | 121 ], |
| 120 'sources': [ | 122 'sources': [ |
| 121 'layer_animation_element_unittest.cc', | 123 'layer_animation_element_unittest.cc', |
| 122 'layer_animation_sequence_unittest.cc', | 124 'layer_animation_sequence_unittest.cc', |
| 123 'layer_animator_unittest.cc', | 125 'layer_animator_unittest.cc', |
| 124 'layer_unittest.cc', | 126 'layer_unittest.cc', |
| 125 'run_all_unittests.cc', | 127 'run_all_unittests.cc', |
| 126 'test/layer_animator_test_controller.cc', | |
| 127 'test/layer_animator_test_controller.h', | |
| 128 'test/test_compositor_host.h', | 128 'test/test_compositor_host.h', |
|
danakj
2014/01/28 16:50:22
How about moving all these files that aren't unit
bshe
2014/01/28 17:45:01
Done.
| |
| 129 'test/test_compositor_host_mac.mm', | 129 'test/test_compositor_host_mac.mm', |
| 130 'test/test_compositor_host_ozone.cc', | 130 'test/test_compositor_host_ozone.cc', |
| 131 'test/test_compositor_host_win.cc', | 131 'test/test_compositor_host_win.cc', |
| 132 'test/test_compositor_host_x11.cc', | 132 'test/test_compositor_host_x11.cc', |
| 133 'test/test_layer_animation_delegate.cc', | 133 'test/test_layer_animation_delegate.cc', |
| 134 'test/test_layer_animation_delegate.h', | 134 'test/test_layer_animation_delegate.h', |
| 135 'test/test_layer_animation_observer.cc', | 135 'test/test_layer_animation_observer.cc', |
| 136 'test/test_layer_animation_observer.h', | 136 'test/test_layer_animation_observer.h', |
| 137 'test/test_utils.cc', | 137 'test/test_utils.cc', |
| 138 'test/test_utils.h', | 138 'test/test_utils.h', |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 151 'dependencies': [ | 151 'dependencies': [ |
| 152 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 152 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 153 ], | 153 ], |
| 154 }], | 154 }], |
| 155 ], | 155 ], |
| 156 }], | 156 }], |
| 157 ], | 157 ], |
| 158 }, | 158 }, |
| 159 ], | 159 ], |
| 160 } | 160 } |
| OLD | NEW |