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 'mac_bundle': 1, | 78 'mac_bundle': 1, |
79 'product_name': 'ppGoogleNaClPluginChrome', | 79 'product_name': 'ppGoogleNaClPluginChrome', |
80 'product_extension': 'plugin', | 80 'product_extension': 'plugin', |
81 }], | 81 }], |
82 ['OS=="mac" and mac_breakpad==1', { | 82 ['OS=="mac" and mac_breakpad==1', { |
83 'variables': { | 83 'variables': { |
84 # A real .dSYM is needed for dump_syms to operate on. | 84 # A real .dSYM is needed for dump_syms to operate on. |
85 'mac_real_dsym': 1, | 85 'mac_real_dsym': 1, |
86 }, | 86 }, |
87 }], | 87 }], |
| 88 ['OS=="mac" and buildtype=="Official" and branding=="Chrome"', { |
| 89 'xcode_settings': { |
| 90 'OTHER_LDFLAGS': ['-fsanitize=address'], |
| 91 }, |
| 92 }], |
88 ], | 93 ], |
89 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
90 'msvs_disabled_warnings': [4267, ], | 95 'msvs_disabled_warnings': [4267, ], |
91 }, | 96 }, |
92 ], | 97 ], |
93 } | 98 } |
OLD | NEW |