| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # | 2 # |
| 3 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 3 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'common_sources': [ | 9 'common_sources': [ |
| 10 'nacl_check.c', | 10 'nacl_check.c', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ]] | 127 ]] |
| 128 } | 128 } |
| 129 ] | 129 ] |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 'targets': [ | 132 'targets': [ |
| 133 # ---------------------------------------------------------------------- | 133 # ---------------------------------------------------------------------- |
| 134 { | 134 { |
| 135 'target_name': 'platform', | 135 'target_name': 'platform', |
| 136 'type': 'static_library', | 136 'type': 'static_library', |
| 137 # tls_edit relies on this which is always built for the host platform. |
| 138 'toolsets': ['host', 'target'], |
| 137 'variables': { | 139 'variables': { |
| 138 'target_base': 'platform_lib', | 140 'target_base': 'platform_lib', |
| 139 }, | 141 }, |
| 140 'dependencies': [ | 142 'dependencies': [ |
| 141 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | 143 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', |
| 142 ], | 144 ], |
| 143 }, | 145 }, |
| 144 # ---------------------------------------------------------------------- | 146 # ---------------------------------------------------------------------- |
| 145 { | 147 { |
| 146 'target_name': 'platform_tests', | 148 'target_name': 'platform_tests', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 ], | 212 ], |
| 211 'dependencies': [ | 213 'dependencies': [ |
| 212 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | 214 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
| 213 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', | 215 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', |
| 214 ], | 216 ], |
| 215 }, | 217 }, |
| 216 ], | 218 ], |
| 217 }], | 219 }], |
| 218 ], | 220 ], |
| 219 } | 221 } |
| OLD | NEW |