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 # All files are stored in these lists which are referenced in the target | 6 # All files are stored in these lists which are referenced in the target |
7 # below so that the GN build of this target can read in this dictionary and | 7 # below so that the GN build of this target can read in this dictionary and |
8 # duplicate the same logic without the lists getting out-of-sync. The GN | 8 # duplicate the same logic without the lists getting out-of-sync. The GN |
9 # .gypi reader can not process conditions and does not know about targets, | 9 # .gypi reader can not process conditions and does not know about targets, |
10 # etc., it just reads Python dictionaries. | 10 # etc., it just reads Python dictionaries. |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 }], | 208 }], |
209 ], | 209 ], |
210 'cc_dir': 'chrome/common/extensions/api', | 210 'cc_dir': 'chrome/common/extensions/api', |
211 'root_namespace': 'extensions::api::%(namespace)s', | 211 'root_namespace': 'extensions::api::%(namespace)s', |
212 }, | 212 }, |
213 'dependencies': [ | 213 'dependencies': [ |
214 # Different APIs include some headers from chrome/common that in turn | 214 # Different APIs include some headers from chrome/common that in turn |
215 # include generated headers from these targets. | 215 # include generated headers from these targets. |
216 # TODO(brettw) this should be made unnecessary if possible. | 216 # TODO(brettw) this should be made unnecessary if possible. |
217 '<(DEPTH)/components/components.gyp:component_metrics_proto', | 217 '<(DEPTH)/components/components.gyp:component_metrics_proto', |
218 | 218 '<(DEPTH)/components/components.gyp:copresence_proto', |
219 '<(DEPTH)/content/content.gyp:content_browser', | 219 '<(DEPTH)/content/content.gyp:content_browser', |
220 '<(DEPTH)/skia/skia.gyp:skia', | 220 '<(DEPTH)/skia/skia.gyp:skia', |
221 '<(DEPTH)/sync/sync.gyp:sync', | 221 '<(DEPTH)/sync/sync.gyp:sync', |
222 ], | 222 ], |
223 'conditions': [ | 223 'conditions': [ |
224 ['chromeos==1', { | 224 ['chromeos==1', { |
225 'dependencies': [ | 225 'dependencies': [ |
226 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 226 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
227 ], | 227 ], |
228 }], | 228 }], |
229 ], | 229 ], |
230 }, | 230 }, |
231 ], | 231 ], |
232 } | 232 } |
OLD | NEW |