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

Side by Side Diff: components/arc.gypi

Issue 1542833002: arc-bridge: Add arc_mojo_bindings dependency to arc_test_support (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@relandfix
Patch Set: Created 5 years 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 | « no previous file | 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/arc 8 # GN version: //components/arc
9 'target_name': 'arc', 9 'target_name': 'arc',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 27 matching lines...) Expand all
38 { 38 {
39 # GN version: //components/arc_test_support 39 # GN version: //components/arc_test_support
40 'target_name': 'arc_test_support', 40 'target_name': 'arc_test_support',
41 'type': 'static_library', 41 'type': 'static_library',
42 'include_dirs': [ 42 'include_dirs': [
43 '..', 43 '..',
44 ], 44 ],
45 'dependencies': [ 45 'dependencies': [
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 'arc', 47 'arc',
48 'arc_mojo_bindings',
48 ], 49 ],
49 'sources': [ 50 'sources': [
50 'arc/test/fake_app_instance.cc', 51 'arc/test/fake_app_instance.cc',
51 'arc/test/fake_app_instance.h', 52 'arc/test/fake_app_instance.h',
52 'arc/test/fake_arc_bridge_instance.cc', 53 'arc/test/fake_arc_bridge_instance.cc',
53 'arc/test/fake_arc_bridge_instance.h', 54 'arc/test/fake_arc_bridge_instance.h',
54 'arc/test/fake_arc_bridge_service.cc', 55 'arc/test/fake_arc_bridge_service.cc',
55 'arc/test/fake_arc_bridge_service.h', 56 'arc/test/fake_arc_bridge_service.h',
56 ], 57 ],
57 }, 58 },
58 { 59 {
59 # GN version: //components/arc:mojo_bindings 60 # GN version: //components/arc:mojo_bindings
60 'target_name': 'arc_mojo_bindings', 61 'target_name': 'arc_mojo_bindings',
61 'type': 'static_library', 62 'type': 'static_library',
62 'includes': [ 63 'includes': [
63 '../third_party/mojo/mojom_bindings_generator.gypi', 64 '../third_party/mojo/mojom_bindings_generator.gypi',
64 ], 65 ],
65 'sources': [ 66 'sources': [
66 'arc/common/app.mojom', 67 'arc/common/app.mojom',
67 'arc/common/arc_bridge.mojom', 68 'arc/common/arc_bridge.mojom',
68 'arc/common/input.mojom', 69 'arc/common/input.mojom',
69 'arc/common/notifications.mojom', 70 'arc/common/notifications.mojom',
70 'arc/common/power.mojom', 71 'arc/common/power.mojom',
71 'arc/common/process.mojom', 72 'arc/common/process.mojom',
72 'arc/common/settings.mojom', 73 'arc/common/settings.mojom',
73 ], 74 ],
74 }, 75 },
75 ], 76 ],
76 } 77 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698