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

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: Fixed unit tests 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
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ], 52 ],
53 }, 53 },
54 { 54 {
55 # GN version: //components/arc:mojo_bindings 55 # GN version: //components/arc:mojo_bindings
56 'target_name': 'arc_mojo_bindings', 56 'target_name': 'arc_mojo_bindings',
57 'type': 'static_library', 57 'type': 'static_library',
58 'includes': [ 58 'includes': [
59 '../third_party/mojo/mojom_bindings_generator.gypi', 59 '../third_party/mojo/mojom_bindings_generator.gypi',
60 ], 60 ],
61 'sources': [ 61 'sources': [
62 'arc/common/app.mojom',
62 'arc/common/arc_bridge.mojom', 63 'arc/common/arc_bridge.mojom',
64 'arc/common/input.mojom',
65 'arc/common/notifications.mojom',
66 'arc/common/power.mojom',
67 'arc/common/process_list.mojom',
63 ], 68 ],
64 }, 69 },
65 ], 70 ],
66 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698