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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'tabs.json', | 70 'tabs.json', |
71 'usb.idl', | 71 'usb.idl', |
72 'webview.json', | 72 'webview.json', |
73 'web_navigation.json', | 73 'web_navigation.json', |
74 'web_request.json', | 74 'web_request.json', |
75 'windows.json', | 75 'windows.json', |
76 ], | 76 ], |
77 'cc_dir': 'chrome/common/extensions/api', | 77 'cc_dir': 'chrome/common/extensions/api', |
78 'root_namespace': 'extensions::api', | 78 'root_namespace': 'extensions::api', |
79 }, | 79 }, |
| 80 'dependencies': [ |
| 81 '<(DEPTH)/skia/skia.gyp:skia', |
| 82 '<(DEPTH)/sync/sync.gyp:sync', |
| 83 ], |
80 'conditions': [ | 84 'conditions': [ |
81 ['OS=="android"', { | 85 ['OS=="android"', { |
82 'schema_files!': [ | 86 'schema_files!': [ |
83 'usb.idl', | 87 'usb.idl', |
84 ], | 88 ], |
85 }], | 89 }], |
86 ['OS!="chromeos"', { | 90 ['OS!="chromeos"', { |
87 'schema_files!': [ | 91 'schema_files!': [ |
88 'file_browser_handler_internal.json', | 92 'file_browser_handler_internal.json', |
89 'rtc_private.idl', | 93 'rtc_private.idl', |
90 ], | 94 ], |
91 }], | 95 }], |
92 ], | 96 ], |
93 }, | 97 }, |
94 ], | 98 ], |
95 } | 99 } |
OLD | NEW |