| 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_sources': [ | 9 'webkit_compositor_bindings_sources': [ |
| 10 'CCThreadImpl.cpp', | 10 'CCThreadImpl.cpp', |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'WEBKIT_IMPLEMENTATION=1', | 101 'WEBKIT_IMPLEMENTATION=1', |
| 102 ], | 102 ], |
| 103 'include_dirs': [ | 103 'include_dirs': [ |
| 104 '../../cc', | 104 '../../cc', |
| 105 '../../cc/stubs', | 105 '../../cc/stubs', |
| 106 'stubs', | 106 'stubs', |
| 107 '../../third_party/WebKit/Source/WebKit/chromium/public', | 107 '../../third_party/WebKit/Source/WebKit/chromium/public', |
| 108 ], | 108 ], |
| 109 'sources': [ | 109 'sources': [ |
| 110 '<@(webkit_compositor_bindings_sources)', | 110 '<@(webkit_compositor_bindings_sources)', |
| 111 'stubs/AnimationIdVendor.h', | 111 'stubs/public/WebTransformationMatrix.h', |
| 112 'stubs/public/WebTransformationMatrix', | |
| 113 ], | 112 ], |
| 113 'conditions': [ |
| 114 ['component=="shared_library"', { |
| 115 'defines': [ |
| 116 'WEBKIT_DLL', |
| 117 ], |
| 118 }], |
| 119 ] |
| 114 }, | 120 }, |
| 115 ], | 121 ], |
| 116 }], | 122 }], |
| 117 ], | 123 ], |
| 118 } | 124 } |
| OLD | NEW |