| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'test/test_layer_animation_delegate.h', | 107 'test/test_layer_animation_delegate.h', |
| 108 'test/test_layer_animation_observer.cc', | 108 'test/test_layer_animation_observer.cc', |
| 109 'test/test_layer_animation_observer.h', | 109 'test/test_layer_animation_observer.h', |
| 110 'test/test_layers.cc', | 110 'test/test_layers.cc', |
| 111 'test/test_layers.h', | 111 'test/test_layers.h', |
| 112 'test/test_suite.cc', | 112 'test/test_suite.cc', |
| 113 'test/test_suite.h', | 113 'test/test_suite.h', |
| 114 'test/test_utils.cc', | 114 'test/test_utils.cc', |
| 115 'test/test_utils.h', | 115 'test/test_utils.h', |
| 116 ], | 116 ], |
| 117 'conditions': [ |
| 118 ['use_x11==1', { |
| 119 'dependencies': [ |
| 120 '<(DEPTH)/build/linux/system.gyp:x11' |
| 121 ] |
| 122 }] |
| 123 ] |
| 117 }, | 124 }, |
| 118 { | 125 { |
| 119 'target_name': 'compositor_unittests', | 126 'target_name': 'compositor_unittests', |
| 120 'type': 'executable', | 127 'type': 'executable', |
| 121 'dependencies': [ | 128 'dependencies': [ |
| 122 '<(DEPTH)/base/base.gyp:base', | 129 '<(DEPTH)/base/base.gyp:base', |
| 123 '<(DEPTH)/base/base.gyp:test_support_base', | 130 '<(DEPTH)/base/base.gyp:test_support_base', |
| 124 '<(DEPTH)/cc/cc.gyp:cc', | 131 '<(DEPTH)/cc/cc.gyp:cc', |
| 125 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 132 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
| 126 '<(DEPTH)/skia/skia.gyp:skia', | 133 '<(DEPTH)/skia/skia.gyp:skia', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 154 'dependencies': [ | 161 'dependencies': [ |
| 155 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 162 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 156 ], | 163 ], |
| 157 }], | 164 }], |
| 158 ], | 165 ], |
| 159 }], | 166 }], |
| 160 ], | 167 ], |
| 161 }, | 168 }, |
| 162 ], | 169 ], |
| 163 } | 170 } |
| OLD | NEW |