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

Side by Side Diff: components/arc.gypi

Issue 1523643002: arc-bridge: Move most methods to Mojo interfaces (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebased to ToT 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 | « chrome/browser/ui/app_list/arc/arc_app_unittest.cc ('k') | components/arc/BUILD.gn » ('j') | 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 29 matching lines...) Expand all
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 ], 48 ],
49 'sources': [ 49 'sources': [
50 'arc/test/fake_app_instance.cc',
51 'arc/test/fake_app_instance.h',
50 'arc/test/fake_arc_bridge_instance.cc', 52 'arc/test/fake_arc_bridge_instance.cc',
51 'arc/test/fake_arc_bridge_instance.h', 53 'arc/test/fake_arc_bridge_instance.h',
52 'arc/test/fake_arc_bridge_service.cc', 54 'arc/test/fake_arc_bridge_service.cc',
53 'arc/test/fake_arc_bridge_service.h', 55 'arc/test/fake_arc_bridge_service.h',
54 ], 56 ],
55 }, 57 },
56 { 58 {
57 # GN version: //components/arc:mojo_bindings 59 # GN version: //components/arc:mojo_bindings
58 'target_name': 'arc_mojo_bindings', 60 'target_name': 'arc_mojo_bindings',
59 'type': 'static_library', 61 'type': 'static_library',
60 'includes': [ 62 'includes': [
61 '../third_party/mojo/mojom_bindings_generator.gypi', 63 '../third_party/mojo/mojom_bindings_generator.gypi',
62 ], 64 ],
63 'sources': [ 65 'sources': [
66 'arc/common/app.mojom',
64 'arc/common/arc_bridge.mojom', 67 'arc/common/arc_bridge.mojom',
68 'arc/common/input.mojom',
69 'arc/common/notifications.mojom',
70 'arc/common/power.mojom',
71 'arc/common/process.mojom',
72 'arc/common/settings.mojom',
65 ], 73 ],
66 }, 74 },
67 ], 75 ],
68 } 76 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/arc/arc_app_unittest.cc ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698