| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'experimental_system_info_memory.idl', | 58 'experimental_system_info_memory.idl', |
| 59 'experimental_system_info_storage.idl', | 59 'experimental_system_info_storage.idl', |
| 60 'file_system.idl', | 60 'file_system.idl', |
| 61 'media_galleries.idl', | 61 'media_galleries.idl', |
| 62 'media_galleries_private.idl', | 62 'media_galleries_private.idl', |
| 63 'push_messaging.idl', | 63 'push_messaging.idl', |
| 64 'rtc_private.idl', | 64 'rtc_private.idl', |
| 65 'serial.idl', | 65 'serial.idl', |
| 66 'socket.idl', | 66 'socket.idl', |
| 67 'sync_file_system.idl', | 67 'sync_file_system.idl', |
| 68 'system_indicator.idl', |
| 68 'tab_capture.idl', | 69 'tab_capture.idl', |
| 69 'usb.idl', | 70 'usb.idl', |
| 70 ], | 71 ], |
| 71 'cc_dir': 'chrome/common/extensions/api', | 72 'cc_dir': 'chrome/common/extensions/api', |
| 72 'root_namespace': 'extensions::api', | 73 'root_namespace': 'extensions::api', |
| 73 }, | 74 }, |
| 74 'conditions': [ | 75 'conditions': [ |
| 75 ['OS=="android"', { | 76 ['OS=="android"', { |
| 76 'idl_schema_files!': [ | 77 'idl_schema_files!': [ |
| 77 'usb.idl', | 78 'usb.idl', |
| 78 ], | 79 ], |
| 79 }], | 80 }], |
| 80 ['OS!="chromeos"', { | 81 ['OS!="chromeos"', { |
| 81 'json_schema_files!': [ | 82 'json_schema_files!': [ |
| 82 'file_browser_handler_internal.json', | 83 'file_browser_handler_internal.json', |
| 83 ], | 84 ], |
| 84 'idl_schema_files!': [ | 85 'idl_schema_files!': [ |
| 85 'rtc_private.idl', | 86 'rtc_private.idl', |
| 86 ], | 87 ], |
| 87 }], | 88 }], |
| 88 ], | 89 ], |
| 89 }, | 90 }, |
| 90 ], | 91 ], |
| 91 } | 92 } |
| OLD | NEW |