| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'sandbox_windows_target': 0, | 8 'sandbox_windows_target': 0, |
| 9 'target_arch%': 'ia32', | 9 'target_arch%': 'ia32', |
| 10 }, | 10 }, |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 ], | 167 ], |
| 168 }, | 168 }, |
| 169 'targets': [ | 169 'targets': [ |
| 170 { | 170 { |
| 171 'target_name': 'sandbox', | 171 'target_name': 'sandbox', |
| 172 'type': 'static_library', | 172 'type': 'static_library', |
| 173 'variables': { | 173 'variables': { |
| 174 'sandbox_windows_target': 1, | 174 'sandbox_windows_target': 1, |
| 175 }, | 175 }, |
| 176 'dependencies': [ | 176 'dependencies': [ |
| 177 '../testing/gtest.gyp:gtest', | |
| 178 '../base/base.gyp:base', | 177 '../base/base.gyp:base', |
| 179 '../base/base.gyp:base_static', | 178 '../base/base.gyp:base_static', |
| 180 ], | 179 ], |
| 181 'export_dependent_settings': [ | 180 'export_dependent_settings': [ |
| 182 '../base/base.gyp:base', | 181 '../base/base.gyp:base', |
| 183 ], | 182 ], |
| 184 'include_dirs': [ | 183 'include_dirs': [ |
| 185 '../..', | 184 '../..', |
| 186 ], | 185 ], |
| 187 'direct_dependent_settings': { | 186 'direct_dependent_settings': { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ], | 354 ], |
| 356 }, | 355 }, |
| 357 'defines': [ | 356 'defines': [ |
| 358 '<@(nacl_win64_defines)', | 357 '<@(nacl_win64_defines)', |
| 359 ] | 358 ] |
| 360 }, | 359 }, |
| 361 ], | 360 ], |
| 362 }], | 361 }], |
| 363 ], | 362 ], |
| 364 } | 363 } |
| OLD | NEW |