| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 { | 78 { |
| 79 'target_name': 'compositor_test_support', | 79 'target_name': 'compositor_test_support', |
| 80 'type': 'static_library', | 80 'type': 'static_library', |
| 81 'dependencies': [ | 81 'dependencies': [ |
| 82 '<(DEPTH)/base/base.gyp:base', | 82 '<(DEPTH)/base/base.gyp:base', |
| 83 '<(DEPTH)/cc/cc.gyp:cc', | 83 '<(DEPTH)/cc/cc.gyp:cc', |
| 84 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 84 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
| 85 '<(DEPTH)/skia/skia.gyp:skia', | 85 '<(DEPTH)/skia/skia.gyp:skia', |
| 86 '<(DEPTH)/testing/gtest.gyp:gtest', | 86 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 87 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', | 87 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
| 88 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 88 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 89 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 89 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 90 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 90 '<(DEPTH)/ui/gl/gl.gyp:gl', | 91 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 91 '<(DEPTH)/ui/ui.gyp:ui', | |
| 92 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 92 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 93 'compositor', | 93 'compositor', |
| 94 ], | 94 ], |
| 95 'sources': [ | 95 'sources': [ |
| 96 'test/context_factories_for_test.cc', | 96 'test/context_factories_for_test.cc', |
| 97 'test/context_factories_for_test.h', | 97 'test/context_factories_for_test.h', |
| 98 'test/draw_waiter_for_test.cc', | 98 'test/draw_waiter_for_test.cc', |
| 99 'test/draw_waiter_for_test.h', | 99 'test/draw_waiter_for_test.h', |
| 100 'test/in_process_context_factory.cc', | 100 'test/in_process_context_factory.cc', |
| 101 'test/in_process_context_factory.h', | 101 'test/in_process_context_factory.h', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 128 { | 128 { |
| 129 'target_name': 'compositor_unittests', | 129 'target_name': 'compositor_unittests', |
| 130 'type': 'executable', | 130 'type': 'executable', |
| 131 'dependencies': [ | 131 'dependencies': [ |
| 132 '<(DEPTH)/base/base.gyp:base', | 132 '<(DEPTH)/base/base.gyp:base', |
| 133 '<(DEPTH)/base/base.gyp:test_support_base', | 133 '<(DEPTH)/base/base.gyp:test_support_base', |
| 134 '<(DEPTH)/cc/cc.gyp:cc', | 134 '<(DEPTH)/cc/cc.gyp:cc', |
| 135 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 135 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
| 136 '<(DEPTH)/skia/skia.gyp:skia', | 136 '<(DEPTH)/skia/skia.gyp:skia', |
| 137 '<(DEPTH)/testing/gtest.gyp:gtest', | 137 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 138 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 138 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 139 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 139 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 140 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 140 '<(DEPTH)/ui/gl/gl.gyp:gl', | 141 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 141 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 142 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
| 142 '<(DEPTH)/ui/ui.gyp:ui', | |
| 143 'compositor', | 143 'compositor', |
| 144 'compositor_test_support', | 144 'compositor_test_support', |
| 145 ], | 145 ], |
| 146 'sources': [ | 146 'sources': [ |
| 147 'layer_animation_element_unittest.cc', | 147 'layer_animation_element_unittest.cc', |
| 148 'layer_animation_sequence_unittest.cc', | 148 'layer_animation_sequence_unittest.cc', |
| 149 'layer_animator_unittest.cc', | 149 'layer_animator_unittest.cc', |
| 150 'layer_unittest.cc', | 150 'layer_unittest.cc', |
| 151 'run_all_unittests.cc', | 151 'run_all_unittests.cc', |
| 152 'transform_animation_curve_adapter_unittest.cc', | 152 'transform_animation_curve_adapter_unittest.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 165 'dependencies': [ | 165 'dependencies': [ |
| 166 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 166 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 167 ], | 167 ], |
| 168 }], | 168 }], |
| 169 ], | 169 ], |
| 170 }], | 170 }], |
| 171 ], | 171 ], |
| 172 }, | 172 }, |
| 173 ], | 173 ], |
| 174 } | 174 } |
| OLD | NEW |