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

Side by Side Diff: components/memory_coordinator.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 years, 3 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
« no previous file with comments | « components/login.gypi ('k') | components/memory_pressure.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/memory_coordinator/public/interfaces
9 'target_name': 'memory_coordinator_mojo_bindings',
10 'type': 'static_library',
11 'sources': [
12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom',
13 'memory_coordinator/public/interfaces/memory_coordinator.mojom',
14 ],
15 'variables': {
16 'use_new_wrapper_types': 'false',
17 },
18 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
19 },
20 {
21 # GN version: //components/memory_coordinator/common
22 'target_name': 'memory_coordinator_common',
23 'type': 'static_library',
24 'dependencies': [
25 '<(DEPTH)/base/base.gyp:base',
26 'memory_coordinator_mojo_bindings',
27 ],
28 'sources': [
29 'memory_coordinator/common/client_registry.cc',
30 'memory_coordinator/common/client_registry.h',
31 'memory_coordinator/common/memory_coordinator_client.h',
32 'memory_coordinator/common/memory_coordinator_features.cc',
33 'memory_coordinator/common/memory_coordinator_features.h',
34 ],
35 },
36 {
37 # GN version: //components/memory_coordinator/child
38 'target_name': 'memory_coordinator_child',
39 'type': 'static_library',
40 'dependencies': [
41 '<(DEPTH)/base/base.gyp:base',
42 'memory_coordinator_common',
43 'memory_coordinator_mojo_bindings',
44 ],
45 'sources': [
46 'memory_coordinator/child/child_memory_coordinator_impl.cc',
47 'memory_coordinator/child/child_memory_coordinator_impl.h',
48 ],
49 },
50 {
51 # GN version: //components/memory_coordinator/browser
52 'target_name': 'memory_coordinator_browser',
53 'type': 'static_library',
54 'dependencies': [
55 '<(DEPTH)/base/base.gyp:base',
56 'memory_coordinator_common',
57 'memory_coordinator_mojo_bindings',
58 ],
59 'sources': [
60 'memory_coordinator/browser/memory_coordinator.cc',
61 'memory_coordinator/browser/memory_coordinator.h',
62 ],
63 },
64 ],
65 }
OLDNEW
« no previous file with comments | « components/login.gypi ('k') | components/memory_pressure.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698