| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 }], | 165 }], |
| 166 ['OS!="chromeos"', { | 166 ['OS!="chromeos"', { |
| 167 'schema_files!': [ | 167 'schema_files!': [ |
| 168 'file_browser_handler_internal.json', | 168 'file_browser_handler_internal.json', |
| 169 'log_private.idl', | 169 'log_private.idl', |
| 170 'rtc_private.idl', | 170 'rtc_private.idl', |
| 171 ], | 171 ], |
| 172 }], | 172 }], |
| 173 ], | 173 ], |
| 174 }, | 174 }, |
| 175 { |
| 176 'target_name': 'features', |
| 177 'type': 'static_library', |
| 178 'sources': [ |
| 179 '<@(schema_files)', |
| 180 ], |
| 181 'includes': [ |
| 182 '../../../../build/features_compile.gypi', |
| 183 ], |
| 184 'variables': { |
| 185 'chromium_code': 1, |
| 186 'schema_files': [ |
| 187 '_permission_features.json', |
| 188 ], |
| 189 'cc_dir': 'chrome/common/extensions/api', |
| 190 'root_namespace': 'extensions::features', |
| 191 }, |
| 192 }, |
| 175 ], | 193 ], |
| 176 } | 194 } |
| OLD | NEW |