| 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 # This GYP file defines untrusted (NaCl) targets. All targets in this | 5 # This GYP file defines untrusted (NaCl) targets. All targets in this |
| 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid | 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid |
| 7 # requiring NaCl sources for building. | 7 # requiring NaCl sources for building. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ], | 47 ], |
| 48 'nexe_target': 'ppapi_nacl_tests', | 48 'nexe_target': 'ppapi_nacl_tests', |
| 49 'build_newlib': 1, | 49 'build_newlib': 1, |
| 50 'include_dirs': [ | 50 'include_dirs': [ |
| 51 'lib/gl/include', | 51 'lib/gl/include', |
| 52 '..', | 52 '..', |
| 53 ], | 53 ], |
| 54 'link_flags': [ | 54 'link_flags': [ |
| 55 '-lppapi_cpp', | 55 '-lppapi_cpp', |
| 56 '-lppapi', | 56 '-lppapi', |
| 57 '-lplatform', | |
| 58 '-lpthread', | 57 '-lpthread', |
| 59 '-lgio', | |
| 60 ], | 58 ], |
| 61 # TODO(bradchen): get rid of extra_deps64 and extra_deps32 | 59 # TODO(bradchen): get rid of extra_deps64 and extra_deps32 |
| 62 # once native_client/build/untrusted.gypi no longer needs them. | 60 # once native_client/build/untrusted.gypi no longer needs them. |
| 63 'extra_deps64': [ | 61 'extra_deps64': [ |
| 64 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', | 62 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', |
| 65 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', | 63 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', |
| 66 ], | 64 ], |
| 67 'extra_deps_newlib64': [ | 65 'extra_deps_newlib64': [ |
| 68 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', | 66 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', |
| 69 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', | 67 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 '--stage-dependencies=<(PRODUCT_DIR)', | 124 '--stage-dependencies=<(PRODUCT_DIR)', |
| 127 '--toolchain=glibc', | 125 '--toolchain=glibc', |
| 128 ], | 126 ], |
| 129 }, | 127 }, |
| 130 ], | 128 ], |
| 131 }], | 129 }], |
| 132 ], | 130 ], |
| 133 }, | 131 }, |
| 134 ], | 132 ], |
| 135 } | 133 } |
| OLD | NEW |