| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
| 10 'sources/': [ | 10 'sources/': [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ], | 77 ], |
| 78 }], | 78 }], |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 { | 81 { |
| 82 'target_name': 'compositor_unittests', | 82 'target_name': 'compositor_unittests', |
| 83 'type': 'executable', | 83 'type': 'executable', |
| 84 'dependencies': [ | 84 'dependencies': [ |
| 85 '<(DEPTH)/base/base.gyp:base', | 85 '<(DEPTH)/base/base.gyp:base', |
| 86 '<(DEPTH)/base/base.gyp:test_support_base', | 86 '<(DEPTH)/base/base.gyp:test_support_base', |
| 87 '<(DEPTH)/chrome/chrome.gyp:packed_resources', |
| 87 '<(DEPTH)/skia/skia.gyp:skia', | 88 '<(DEPTH)/skia/skia.gyp:skia', |
| 88 '<(DEPTH)/testing/gtest.gyp:gtest', | 89 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 89 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', | 90 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', |
| 90 '<(DEPTH)/ui/ui.gyp:gfx_resources', | 91 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
| 91 '<(DEPTH)/ui/ui.gyp:ui', | 92 '<(DEPTH)/ui/ui.gyp:ui', |
| 92 '<(DEPTH)/ui/ui.gyp:ui_resources', | 93 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 93 'compositor', | 94 'compositor', |
| 94 ], | 95 ], |
| 95 'sources': [ | 96 'sources': [ |
| 96 'layer_unittest.cc', | 97 'layer_unittest.cc', |
| 97 'run_all_unittests.cc', | 98 'run_all_unittests.cc', |
| 98 'test_compositor_host.h', | 99 'test_compositor_host.h', |
| 99 'test_compositor_host_win.cc', | 100 'test_compositor_host_win.cc', |
| 100 'test_suite.cc', | 101 'test_suite.cc', |
| 101 'test_suite.h', | 102 'test_suite.h', |
| 102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 103 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 104 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 104 ], | 105 ], |
| 105 }, | 106 }, |
| 106 ], | 107 ], |
| 107 } | 108 } |
| OLD | NEW |