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 'variables': { | 10 'variables': { |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 }, | 232 }, |
233 { | 233 { |
234 'target_name': 'sandbox_win64', | 234 'target_name': 'sandbox_win64', |
235 'type': 'static_library', | 235 'type': 'static_library', |
236 'variables': { | 236 'variables': { |
237 'sandbox_windows_target': 1, | 237 'sandbox_windows_target': 1, |
238 }, | 238 }, |
239 'dependencies': [ | 239 'dependencies': [ |
240 '../testing/gtest.gyp:gtest', | 240 '../testing/gtest.gyp:gtest', |
241 '../base/base.gyp:base_nacl_win64', | 241 '../base/base.gyp:base_nacl_win64', |
| 242 '../base/base.gyp:base_static_win64', |
242 ], | 243 ], |
243 'configurations': { | 244 'configurations': { |
244 'Common_Base': { | 245 'Common_Base': { |
245 'msvs_target_platform': 'x64', | 246 'msvs_target_platform': 'x64', |
246 }, | 247 }, |
247 }, | 248 }, |
248 'sources': [ | 249 'sources': [ |
249 # Files that are used by the 64-bit version of Windows sandbox only. | 250 # Files that are used by the 64-bit version of Windows sandbox only. |
250 'src/interceptors_64.cc', | 251 'src/interceptors_64.cc', |
251 'src/interceptors_64.h', | 252 'src/interceptors_64.h', |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 ], | 386 ], |
386 }], | 387 }], |
387 ], | 388 ], |
388 } | 389 } |
389 | 390 |
390 # Local Variables: | 391 # Local Variables: |
391 # tab-width:2 | 392 # tab-width:2 |
392 # indent-tabs-mode:nil | 393 # indent-tabs-mode:nil |
393 # End: | 394 # End: |
394 # vim: set expandtab tabstop=2 shiftwidth=2: | 395 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |