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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'nacl_target': 0, | 8 'nacl_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'python build_nacl_irt.py --inputs', | 66 'python build_nacl_irt.py --inputs', |
67 }, | 67 }, |
68 'dependencies': [ | 68 'dependencies': [ |
69 # TODO(gregoryd): chrome_resources and chrome_strings could be | 69 # TODO(gregoryd): chrome_resources and chrome_strings could be |
70 # shared with the 64-bit target, but it does not work due to a gyp | 70 # shared with the 64-bit target, but it does not work due to a gyp |
71 #issue | 71 #issue |
72 'chrome_resources', | 72 'chrome_resources', |
73 'chrome_strings', | 73 'chrome_strings', |
74 'common', | 74 'common', |
75 '../webkit/support/webkit_support.gyp:glue', | 75 '../webkit/support/webkit_support.gyp:glue', |
76 '../native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPluginChrome
', | 76 '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPlugin
Chrome', |
77 '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel', | 77 '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel', |
78 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:plat
form_qual_lib', | 78 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:plat
form_qual_lib', |
79 ], | 79 ], |
80 'direct_dependent_settings': { | 80 'direct_dependent_settings': { |
81 'defines': [ | 81 'defines': [ |
82 'NACL_BLOCK_SHIFT=5', | 82 'NACL_BLOCK_SHIFT=5', |
83 'NACL_BLOCK_SIZE=32', | 83 'NACL_BLOCK_SIZE=32', |
84 '<@(nacl_defines)', | 84 '<@(nacl_defines)', |
85 ], | 85 ], |
86 }, | 86 }, |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 # reference nacl_helper as a shared library | 230 # reference nacl_helper as a shared library |
231 '<(PRODUCT_DIR)/nacl_helper.so', | 231 '<(PRODUCT_DIR)/nacl_helper.so', |
232 '-Wl,-rpath,<(SHARED_LIB_DIR)', | 232 '-Wl,-rpath,<(SHARED_LIB_DIR)', |
233 ], | 233 ], |
234 }, | 234 }, |
235 }, | 235 }, |
236 ], | 236 ], |
237 }], | 237 }], |
238 ], | 238 ], |
239 } | 239 } |
OLD | NEW |