| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/json_schema_api.gni") | 5 import("//build/json_schema_api.gni") |
| 6 import("schemas.gni") | 6 import("schemas.gni") |
| 7 | 7 |
| 8 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 # GYP version: chrome/common/extensions/api/api.gyp:chrome_api | 10 # GYP version: chrome/common/extensions/api/api.gyp:chrome_api |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 deps = [ | 27 deps = [ |
| 28 # Different APIs include headers from these targets. | 28 # Different APIs include headers from these targets. |
| 29 "//content/public/browser", | 29 "//content/public/browser", |
| 30 "//extensions/browser", | 30 "//extensions/browser", |
| 31 | 31 |
| 32 # Different APIs include some headers from chrome/common that in turn | 32 # Different APIs include some headers from chrome/common that in turn |
| 33 # include generated headers from these targets. | 33 # include generated headers from these targets. |
| 34 # TODO(brettw) this should be made unnecessary if possible. | 34 # TODO(brettw) this should be made unnecessary if possible. |
| 35 ":api", | 35 ":api", |
| 36 "//components/copresence/proto", | |
| 37 "//components/metrics/proto", | 36 "//components/metrics/proto", |
| 38 "//skia", | 37 "//skia", |
| 39 "//sync", | 38 "//sync", |
| 40 "//ui/accessibility:ax_gen", | 39 "//ui/accessibility:ax_gen", |
| 41 ] | 40 ] |
| 42 if (is_chromeos) { | 41 if (is_chromeos) { |
| 43 deps += [ "//components/drive:proto" ] | 42 deps += [ "//components/drive:proto" ] |
| 44 } | 43 } |
| 45 deps += schema_dependencies | 44 deps += schema_dependencies |
| 46 } | 45 } |
| OLD | NEW |