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

Side by Side Diff: tools/android/forwarder2/forwarder.gyp

Issue 118583003: gyps! and builds! Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « third_party/mach_override/mach_override.gyp ('k') | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'target_name': 'forwarder2', 8 'target_name': 'forwarder2',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 27 matching lines...) Expand all
38 'device_forwarder_main.cc', 38 'device_forwarder_main.cc',
39 'device_listener.cc', 39 'device_listener.cc',
40 'forwarder.cc', 40 'forwarder.cc',
41 'forwarders_manager.cc', 41 'forwarders_manager.cc',
42 'pipe_notifier.cc', 42 'pipe_notifier.cc',
43 'socket.cc', 43 'socket.cc',
44 ], 44 ],
45 }, 45 },
46 { 46 {
47 'target_name': 'host_forwarder', 47 'target_name': 'host_forwarder',
48 'type': 'executable',
49 'toolsets': ['host'], 48 'toolsets': ['host'],
50 'dependencies': [ 49 'conditions': [
51 '../../../base/base.gyp:base', 50 ['host_os!="linux"', {
52 '../common/common.gyp:android_tools_common', 51 'type': 'none',
53 ], 52 }, {
54 'include_dirs': [ 53 'dependencies': [
55 '../../..', 54 '../../../base/base.gyp:base',
56 ], 55 '../common/common.gyp:android_tools_common',
57 'sources': [ 56 ],
58 'command.cc', 57 'include_dirs': [
59 'common.cc', 58 '../../..',
60 'daemon.cc', 59 ],
61 'forwarder.cc', 60 'sources': [
62 'forwarders_manager.cc', 61 'command.cc',
63 'host_controller.cc', 62 'common.cc',
64 'host_forwarder_main.cc', 63 'daemon.cc',
65 'pipe_notifier.cc', 64 'forwarder.cc',
66 'socket.cc', 65 'forwarders_manager.cc',
66 'host_controller.cc',
67 'host_forwarder_main.cc',
68 'pipe_notifier.cc',
69 'socket.cc',
70 ],
71 }],
67 ], 72 ],
68 }, 73 },
69 ], 74 ],
70 } 75 }
OLDNEW
« no previous file with comments | « third_party/mach_override/mach_override.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698