| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ], | 78 ], |
| 79 }], | 79 }], |
| 80 }], | 80 }], |
| 81 ['nacl_standalone==0', { | 81 ['nacl_standalone==0', { |
| 82 'targets': [ | 82 'targets': [ |
| 83 { | 83 { |
| 84 'target_name': 'ppGoogleNaClPluginChrome', | 84 'target_name': 'ppGoogleNaClPluginChrome', |
| 85 'type': 'loadable_module', | 85 'type': 'loadable_module', |
| 86 'sources': [ | 86 'sources': [ |
| 87 '<@(common_sources)', | 87 '<@(common_sources)', |
| 88 'browser_utils.cc', | |
| 89 ], | 88 ], |
| 90 'xcode_settings': { | 89 'xcode_settings': { |
| 91 'OTHER_LDFLAGS': [ | 90 'OTHER_LDFLAGS': [ |
| 92 '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/tru
sted/plugin/ppapi.def' | 91 '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/tru
sted/plugin/ppapi.def' |
| 93 ], | 92 ], |
| 94 }, | 93 }, |
| 95 'dependencies': [ | 94 'dependencies': [ |
| 96 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | 95 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', |
| 97 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', | 96 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', |
| 98 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 97 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 119 # A real .dSYM is needed for dump_syms to operate on. | 118 # A real .dSYM is needed for dump_syms to operate on. |
| 120 'mac_real_dsym': 1, | 119 'mac_real_dsym': 1, |
| 121 }, | 120 }, |
| 122 }], | 121 }], |
| 123 ], | 122 ], |
| 124 }, | 123 }, |
| 125 ], | 124 ], |
| 126 }], | 125 }], |
| 127 ], | 126 ], |
| 128 } | 127 } |
| OLD | NEW |