Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 'includes': [ | 7 'includes': [ |
| 8 'plugin.gypi', | 8 'plugin.gypi', |
| 9 ], | 9 ], |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', | 107 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', |
| 108 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy.gyp :nacl_ppapi_browser', | 108 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy.gyp :nacl_ppapi_browser', |
| 109 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', | 109 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', |
| 110 ], | 110 ], |
| 111 'conditions': [ | 111 'conditions': [ |
| 112 ['OS=="mac"', { | 112 ['OS=="mac"', { |
| 113 'mac_bundle': 1, | 113 'mac_bundle': 1, |
| 114 'product_name': 'ppGoogleNaClPluginChrome', | 114 'product_name': 'ppGoogleNaClPluginChrome', |
| 115 'product_extension': 'plugin', | 115 'product_extension': 'plugin', |
| 116 }], | 116 }], |
| 117 ['OS=="mac" and mac_breakpad==1', { | 117 ['OS=="mac" and mac_breakpad_symbols==1', { |
|
noelallen1
2011/12/10 04:41:39
Up to this point, I believe you only used mac_brea
| |
| 118 'variables': { | 118 'variables': { |
| 119 # A real .dSYM is needed for dump_syms to operate on. | 119 # A real .dSYM is needed for dump_syms to operate on. |
| 120 'mac_real_dsym': 1, | 120 'mac_real_dsym': 1, |
| 121 }, | 121 }, |
| 122 }], | 122 }], |
| 123 ['OS=="win"', { | 123 ['OS=="win"', { |
| 124 'dependencies': [ | 124 'dependencies': [ |
| 125 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: browserhandle', | 125 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: browserhandle', |
| 126 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: handle_lookup', | 126 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: handle_lookup', |
| 127 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: ldrhandle', | 127 '<(DEPTH)/native_client/src/trusted/handle_pass/handle_pass.gyp: ldrhandle', |
| 128 ], | 128 ], |
| 129 }], | 129 }], |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 ], | 132 ], |
| 133 }], | 133 }], |
| 134 ], | 134 ], |
| 135 } | 135 } |
| OLD | NEW |