Chromium Code Reviews| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/json_schema_api.gni") | 6 import("//build/json_schema_api.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 assert(enable_extensions) | 9 assert(enable_extensions) |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 105 | 105 |
| 106 json_schema_api("api_registration") { | 106 json_schema_api("api_registration") { |
| 107 sources = schema_files | 107 sources = schema_files |
| 108 impl_dir = "//extensions/browser/api" | 108 impl_dir = "//extensions/browser/api" |
| 109 bundle_registration = true | 109 bundle_registration = true |
| 110 bundle_name = "" | 110 bundle_name = "" |
| 111 | 111 |
| 112 deps = [ | 112 deps = [ |
| 113 ":api", | 113 ":api", |
| 114 "//device/serial", | 114 "//device/serial", |
| 115 "//extensions/browser/api", | |
|
lazyboy
2016/10/26 17:22:23
Not sure if you want this, over to Devlin for revi
Devlin
2016/10/26 19:30:28
Hmm.... So I'm assuming we need this because the
Devlin
2016/10/26 19:31:00
(fwiw, I think this actually works, but it's a lit
tsniatowski
2016/10/26 20:43:42
Yes, what ends up happening is that the build of o
Dirk Pranke
2016/10/26 21:49:21
The way to share variables between files is to mov
Devlin
2016/10/26 21:57:52
tsniatowski@, can we try doing this and moving thi
tsniatowski
2016/10/27 08:18:58
OK, I'll have a look. For consistency, do you want
| |
| 115 "//extensions/common/api/cast_channel:cast_channel_proto", | 116 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 116 "//skia", | 117 "//skia", |
| 117 ] | 118 ] |
| 118 | 119 |
| 119 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and | 120 # Inherit uncompiled_sources, uncompiled_bundle_schema_sources, and |
| 120 # root_namespace. | 121 # root_namespace. |
| 121 } | 122 } |
| OLD | NEW |