| 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': 0, | 7 'chromium_code': 0, |
| 8 'use_libcc_for_compositor%': 0, | 8 'use_libcc_for_compositor%': 0, |
| 9 'webkit_compositor_bindings_tests_sources': [ | 9 'webkit_compositor_bindings_tests_sources': [ |
| 10 'LayerChromiumTest.cpp', | 10 'LayerChromiumTest.cpp', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'type' : 'executable', | 32 'type' : 'executable', |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 '../../base/base.gyp:test_support_base', | 34 '../../base/base.gyp:test_support_base', |
| 35 '../../testing/gmock.gyp:gmock', | 35 '../../testing/gmock.gyp:gmock', |
| 36 '../../testing/gtest.gyp:gtest', | 36 '../../testing/gtest.gyp:gtest', |
| 37 ], | 37 ], |
| 38 'sources': [ | 38 'sources': [ |
| 39 'test/run_all_unittests.cc', | 39 'test/run_all_unittests.cc', |
| 40 ], | 40 ], |
| 41 'conditions': [ | 41 'conditions': [ |
| 42 ['use_libcc_for_compositor==1 and component!="shared_library"', { | 42 ['use_libcc_for_compositor==1', { |
| 43 'defines': [ | 43 'defines': [ |
| 44 'USE_LIBCC_FOR_COMPOSITOR', | 44 'USE_LIBCC_FOR_COMPOSITOR', |
| 45 ], | 45 ], |
| 46 'dependencies': [ | 46 'dependencies': [ |
| 47 '../../cc/cc.gyp:cc', | 47 '../../cc/cc.gyp:cc', |
| 48 '../../cc/cc_tests.gyp:cc_test_support', | 48 '../../cc/cc_tests.gyp:cc_test_support', |
| 49 '../../skia/skia.gyp:skia', | 49 '../../skia/skia.gyp:skia', |
| 50 '../../third_party/WebKit/Source/Platform/Platform.gyp/Platform.gyp:
webkit_platform', | |
| 51 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 50 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
| 52 '../../webkit/support/webkit_support.gyp:webkit_support', | |
| 53 'compositor_bindings.gyp:webkit_compositor_bindings', | 51 'compositor_bindings.gyp:webkit_compositor_bindings', |
| 54 ], | 52 ], |
| 55 'include_dirs': [ | 53 'include_dirs': [ |
| 56 '.', | 54 '.', |
| 57 'test', | 55 'test', |
| 58 '<(DEPTH)/cc', | 56 '<(DEPTH)/cc', |
| 59 '<(DEPTH)/cc/stubs', | 57 '<(DEPTH)/cc/stubs', |
| 60 '<(DEPTH)/cc/test', | 58 '<(DEPTH)/cc/test', |
| 59 '../../third_party/WebKit/Source/Platform/chromium' |
| 61 ], | 60 ], |
| 62 'sources': [ | 61 'sources': [ |
| 63 '<@(webkit_compositor_bindings_tests_sources)', | 62 '<@(webkit_compositor_bindings_tests_sources)', |
| 64 ] | 63 ] |
| 65 }], | 64 }], |
| 66 ], | 65 ], |
| 67 }, | 66 }, |
| 68 ], | 67 ], |
| 69 } | 68 } |
| OLD | NEW |