| 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 20 matching lines...) Expand all Loading... |
| 31 'windows.json', | 31 'windows.json', |
| 32 ], | 32 ], |
| 33 'idl_schema_files': [ | 33 'idl_schema_files': [ |
| 34 'alarms.idl', | 34 'alarms.idl', |
| 35 'app_window.idl', | 35 'app_window.idl', |
| 36 'downloads.idl', | 36 'downloads.idl', |
| 37 'experimental_bluetooth.idl', | 37 'experimental_bluetooth.idl', |
| 38 'experimental_discovery.idl', | 38 'experimental_discovery.idl', |
| 39 'experimental_dns.idl', | 39 'experimental_dns.idl', |
| 40 'experimental_idltest.idl', | 40 'experimental_idltest.idl', |
| 41 'experimental_media_galleries.idl', |
| 41 'experimental_serial.idl', | 42 'experimental_serial.idl', |
| 42 'experimental_socket.idl', | 43 'experimental_socket.idl', |
| 43 'experimental_usb.idl', | 44 'experimental_usb.idl', |
| 44 'file_system.idl', | 45 'file_system.idl', |
| 45 ], | 46 ], |
| 46 'cc_dir': 'chrome/common/extensions/api', | 47 'cc_dir': 'chrome/common/extensions/api', |
| 47 'root_namespace': 'extensions::api', | 48 'root_namespace': 'extensions::api', |
| 48 }, | 49 }, |
| 49 'conditions': [ | 50 'conditions': [ |
| 50 ['OS=="android"', { | 51 ['OS=="android"', { |
| 51 'idl_schema_files!': [ | 52 'idl_schema_files!': [ |
| 52 'experimental_usb.idl', | 53 'experimental_usb.idl', |
| 53 ], | 54 ], |
| 54 }], | 55 }], |
| 55 ['OS!="chromeos"', { | 56 ['OS!="chromeos"', { |
| 56 'json_schema_files!': [ | 57 'json_schema_files!': [ |
| 57 'file_browser_handler_internal.json', | 58 'file_browser_handler_internal.json', |
| 58 ], | 59 ], |
| 59 }], | 60 }], |
| 60 ], | 61 ], |
| 61 }, | 62 }, |
| 62 ], | 63 ], |
| 63 } | 64 } |
| OLD | NEW |