| 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 28 matching lines...) Expand all Loading... |
| 39 'experimental_bluetooth.idl', | 39 'experimental_bluetooth.idl', |
| 40 'experimental_discovery.idl', | 40 'experimental_discovery.idl', |
| 41 'experimental_dns.idl', | 41 'experimental_dns.idl', |
| 42 'experimental_identity.idl', | 42 'experimental_identity.idl', |
| 43 'experimental_idltest.idl', | 43 'experimental_idltest.idl', |
| 44 'experimental_media_galleries.idl', | 44 'experimental_media_galleries.idl', |
| 45 'experimental_serial.idl', | 45 'experimental_serial.idl', |
| 46 'experimental_socket.idl', | 46 'experimental_socket.idl', |
| 47 'experimental_usb.idl', | 47 'experimental_usb.idl', |
| 48 'file_system.idl', | 48 'file_system.idl', |
| 49 'media_galleries.idl', |
| 49 ], | 50 ], |
| 50 'cc_dir': 'chrome/common/extensions/api', | 51 'cc_dir': 'chrome/common/extensions/api', |
| 51 'root_namespace': 'extensions::api', | 52 'root_namespace': 'extensions::api', |
| 52 }, | 53 }, |
| 53 'conditions': [ | 54 'conditions': [ |
| 54 ['OS=="android"', { | 55 ['OS=="android"', { |
| 55 'idl_schema_files!': [ | 56 'idl_schema_files!': [ |
| 56 'experimental_usb.idl', | 57 'experimental_usb.idl', |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ['OS!="chromeos"', { | 60 ['OS!="chromeos"', { |
| 60 'json_schema_files!': [ | 61 'json_schema_files!': [ |
| 61 'file_browser_handler_internal.json', | 62 'file_browser_handler_internal.json', |
| 62 ], | 63 ], |
| 63 }], | 64 }], |
| 64 ], | 65 ], |
| 65 }, | 66 }, |
| 66 ], | 67 ], |
| 67 } | 68 } |
| OLD | NEW |