OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'conditions': [ | 8 'conditions': [ |
9 # Pepper demos that are compiled as shared libraries need to be compiled | 9 # Pepper demos that are compiled as shared libraries need to be compiled |
10 # with -fPIC flag. All static libraries that these demos depend on must | 10 # with -fPIC flag. All static libraries that these demos depend on must |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 }], | 96 }], |
97 ], | 97 ], |
98 }, | 98 }, |
99 'conditions': [ | 99 'conditions': [ |
100 ['OS=="win"', { | 100 ['OS=="win"', { |
101 'sources': [ | 101 'sources': [ |
102 'framework/plugin.def', | 102 'framework/plugin.def', |
103 'framework/plugin.rc', | 103 'framework/plugin.rc', |
104 ], | 104 ], |
105 }], | 105 }], |
106 ['OS=="linux"', { | |
107 # -gstabs, used in the official builds, causes an ICE. Remove it. | |
108 'cflags!': ['-gstabs'], | |
109 }], | |
110 ['OS=="mac"', { | 106 ['OS=="mac"', { |
111 'sources': [ | 107 'sources': [ |
112 'framework/Plugin_Info.plist', | 108 'framework/Plugin_Info.plist', |
113 ], | 109 ], |
114 'xcode_settings': { | 110 'xcode_settings': { |
115 'INFOPLIST_FILE': 'framework/Plugin_Info.plist', | 111 'INFOPLIST_FILE': 'framework/Plugin_Info.plist', |
116 }, | 112 }, |
117 'mac_bundle': 1, | 113 'mac_bundle': 1, |
118 'product_extension': 'plugin', | 114 'product_extension': 'plugin', |
119 }], | 115 }], |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 ], | 291 ], |
296 }], | 292 }], |
297 ], | 293 ], |
298 } | 294 } |
299 | 295 |
300 # Local Variables: | 296 # Local Variables: |
301 # tab-width:2 | 297 # tab-width:2 |
302 # indent-tabs-mode:nil | 298 # indent-tabs-mode:nil |
303 # End: | 299 # End: |
304 # vim: set expandtab tabstop=2 shiftwidth=2: | 300 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |