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

Side by Side Diff: components/memory_coordinator.gypi

Issue 2156303003: Mojo C++ bindings: make the generator use STL/WTF string/vector/map by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into 72_switch_default Created 4 years, 5 months 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
OLDNEW
1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2016 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 # GN version: //components/memory_coordinator/public/interfaces 8 # GN version: //components/memory_coordinator/public/interfaces
9 'target_name': 'memory_coordinator_mojo_bindings', 9 'target_name': 'memory_coordinator_mojo_bindings',
10 'type': 'static_library', 10 'type': 'static_library',
11 'sources': [ 11 'sources': [
12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom', 12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom',
13 ], 13 ],
14 'variables': {
15 'use_new_wrapper_types': 'false',
16 },
14 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 17 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
15 }, 18 },
16 { 19 {
17 # GN version: //components/memory_coordinator/common 20 # GN version: //components/memory_coordinator/common
18 'target_name': 'memory_coordinator_common', 21 'target_name': 'memory_coordinator_common',
19 'type': 'none', 22 'type': 'none',
20 'dependencies': [ 23 'dependencies': [
21 'memory_coordinator_mojo_bindings', 24 'memory_coordinator_mojo_bindings',
22 ], 25 ],
23 'sources': [ 26 'sources': [
24 'memory_coordinator/common/memory_coordinator_client.h', 27 'memory_coordinator/common/memory_coordinator_client.h',
25 ], 28 ],
26 }, 29 },
27 { 30 {
28 # GN version: //components/memory_coordinator/child 31 # GN version: //components/memory_coordinator/child
29 'target_name': 'memory_coordinator_child', 32 'target_name': 'memory_coordinator_child',
30 'type': 'static_library', 33 'type': 'static_library',
31 'dependencies': [ 34 'dependencies': [
32 '<(DEPTH)/base/base.gyp:base', 35 '<(DEPTH)/base/base.gyp:base',
33 'memory_coordinator_common', 36 'memory_coordinator_common',
34 'memory_coordinator_mojo_bindings', 37 'memory_coordinator_mojo_bindings',
35 ], 38 ],
36 'sources': [ 39 'sources': [
37 'memory_coordinator/child/child_memory_coordinator_impl.cc', 40 'memory_coordinator/child/child_memory_coordinator_impl.cc',
38 'memory_coordinator/child/child_memory_coordinator_impl.h', 41 'memory_coordinator/child/child_memory_coordinator_impl.h',
39 ], 42 ],
40 }, 43 },
41 ], 44 ],
42 } 45 }
OLDNEW
« no previous file with comments | « components/leveldb/public/interfaces/BUILD.gn ('k') | components/memory_coordinator/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698