OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'api', | 8 'target_name': 'api', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 'wallpaper_private.json', | 174 'wallpaper_private.json', |
175 ], | 175 ], |
176 }], | 176 }], |
177 ['enable_webrtc==0', { | 177 ['enable_webrtc==0', { |
178 'schema_files!': [ | 178 'schema_files!': [ |
179 'webrtc_logging_private.idl', | 179 'webrtc_logging_private.idl', |
180 ], | 180 ], |
181 }], | 181 }], |
182 ], | 182 ], |
183 }, | 183 }, |
184 { | |
185 'target_name': 'features', | |
186 'type': 'static_library', | |
187 'sources': [ | |
188 '<@(schema_files)', | |
189 ], | |
190 'includes': [ | |
191 '../../../../build/features_compile.gypi', | |
192 ], | |
193 'variables': { | |
194 'chromium_code': 1, | |
195 'schema_files': [ | |
196 '_permission_features.json', | |
197 ], | |
198 'cc_dir': 'chrome/common/extensions/api', | |
199 'root_namespace': 'extensions::features', | |
200 }, | |
201 }, | |
202 ], | 184 ], |
203 } | 185 } |
OLD | NEW |