| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 }, | 117 }, |
| 118 }], | 118 }], |
| 119 ['OS=="win"', { | 119 ['OS=="win"', { |
| 120 'dependencies': [ | 120 'dependencies': [ |
| 121 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages', | 121 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages', |
| 122 '../../ipc/ipc.gyp:ipc', | 122 '../../ipc/ipc.gyp:ipc', |
| 123 ], | 123 ], |
| 124 'sources!': [ | 124 'sources!': [ |
| 125 'input_state_lookup.cc', | 125 'input_state_lookup.cc', |
| 126 ], | 126 ], |
| 127 'msvs_settings': { | |
| 128 'VCCLCompilerTool': { | |
| 129 'ForcedIncludeFiles': [ 'build/intsafe_workaround.h' ], | |
| 130 }, | |
| 131 }, | |
| 132 }], | 127 }], |
| 133 ], | 128 ], |
| 134 }, | 129 }, |
| 135 { | 130 { |
| 136 'target_name': 'aura_test_support', | 131 'target_name': 'aura_test_support', |
| 137 'type': 'static_library', | 132 'type': 'static_library', |
| 138 'dependencies': [ | 133 'dependencies': [ |
| 139 '../../skia/skia.gyp:skia', | 134 '../../skia/skia.gyp:skia', |
| 140 '../../testing/gtest.gyp:gtest', | 135 '../../testing/gtest.gyp:gtest', |
| 141 '../events/events.gyp:events', | 136 '../events/events.gyp:events', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 ['OS=="linux" and linux_use_tcmalloc==1', { | 299 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 305 'dependencies': [ | 300 'dependencies': [ |
| 306 # See http://crbug.com/162998#c4 for why this is needed. | 301 # See http://crbug.com/162998#c4 for why this is needed. |
| 307 '../../base/allocator/allocator.gyp:allocator', | 302 '../../base/allocator/allocator.gyp:allocator', |
| 308 ], | 303 ], |
| 309 }], | 304 }], |
| 310 ], | 305 ], |
| 311 }, | 306 }, |
| 312 ], | 307 ], |
| 313 } | 308 } |
| OLD | NEW |