Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- gyp -*- | 1 # -*- gyp -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
| 10 'syscall_handler': [ | 10 'syscall_handler': [ |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 198 }], | 198 }], |
| 199 ], | 199 ], |
| 200 }, | 200 }, |
| 201 'targets': [ | 201 'targets': [ |
| 202 { | 202 { |
| 203 'target_name': 'sel', | 203 'target_name': 'sel', |
| 204 'type': 'static_library', | 204 'type': 'static_library', |
| 205 'variables': { | 205 'variables': { |
| 206 'target_base': 'sel', | 206 'target_base': 'sel', |
| 207 }, | 207 }, |
| 208 'sources': [ | |
| 209 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c', | |
|
Nick Bray
2012/05/22 23:46:31
This should be added to the 'target_base=="sel"' d
pasko-google - do not use
2012/05/23 14:28:11
Thank you for this! Seriously, great suggestion! I
| |
| 210 ], | |
| 208 'dependencies': [ | 211 'dependencies': [ |
| 209 'env_cleanser', | 212 'env_cleanser', |
| 210 'nacl_error_code', | 213 'nacl_error_code', |
| 211 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | 214 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', |
| 212 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 215 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 213 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | 216 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', |
| 214 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ', | 217 '<(DEPTH)/native_client/src/trusted/debug_stub/debug_stub.gyp:debug_stub ', |
| 215 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | 218 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', |
| 216 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject', | 219 '<(DEPTH)/native_client/src/trusted/fault_injection/fault_injection.gyp: nacl_fault_inject', |
| 217 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp', | 220 '<(DEPTH)/native_client/src/trusted/gdb_rsp/gdb_rsp.gyp:gdb_rsp', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 407 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', | 410 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', |
| 408 ], | 411 ], |
| 409 'sources': [ | 412 'sources': [ |
| 410 'sel_main_chrome_test.c', | 413 'sel_main_chrome_test.c', |
| 411 ], | 414 ], |
| 412 }, | 415 }, |
| 413 ], | 416 ], |
| 414 }], | 417 }], |
| 415 ] | 418 ] |
| 416 } | 419 } |
| OLD | NEW |