Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: extensions/common/api/BUILD.gn

Issue 2494873002: Mojo C++ bindings: switch mime_handler mojom target to use STL types. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/browser/api/mime_handler_private/mime_handler_private.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//extensions/common/api/schema.gni") 7 import("//extensions/common/api/schema.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 assert(enable_extensions) 10 assert(enable_extensions)
11 11
12 json_schema_api("generated_api") { 12 json_schema_api("generated_api") {
13 sources = extensions_api_schema_files 13 sources = extensions_api_schema_files
14 schemas = true 14 schemas = true
15 bundle = true 15 bundle = true
16 bundle_name = "" 16 bundle_name = ""
17 root_namespace = extensions_api_root_namespace 17 root_namespace = extensions_api_root_namespace
18 uncompiled_sources = extensions_api_uncompiled_sources 18 uncompiled_sources = extensions_api_uncompiled_sources
19 uncompiled_bundle_schema_sources = 19 uncompiled_bundle_schema_sources =
20 extensions_api_uncompiled_bundle_schema_sources 20 extensions_api_uncompiled_bundle_schema_sources
21 } 21 }
22 22
23 mojom("mojom") { 23 mojom("mojom") {
24 sources = [ 24 sources = [
25 "mime_handler.mojom", 25 "mime_handler.mojom",
26 ] 26 ]
27
28 use_new_wrapper_types = false
29 } 27 }
30 28
31 group("api") { 29 group("api") {
32 public_deps = [ 30 public_deps = [
33 ":generated_api", 31 ":generated_api",
34 ":mojom", 32 ":mojom",
35 ] 33 ]
36 } 34 }
OLDNEW
« no previous file with comments | « extensions/browser/api/mime_handler_private/mime_handler_private.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698