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

Side by Side Diff: remoting/remoting_all.gyp

Issue 896743004: [Chromoting] Remove wildcard ('*') from remoting_all target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable me2me host for chromeos Created 5 years, 10 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 | « no previous file | remoting/remoting_host.gypi » ('j') | remoting/remoting_host.gypi » ('J')
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 'variables': {
7 'enable_remoting_host': 0,
8 'enable_me2me_host': 0,
9 'conditions': [
10 # Remoting host is supported only on Windows, OSX and Linux (with X11).
11 ['OS=="win" or OS=="mac" or (OS=="linux" and use_x11==1 and chromeos==0)', {
12 'enable_remoting_host': 1,
13 'enable_me2me_host': 1,
14 }],
15 ['OS=="linux" and chromeos==1', {
16 'enable_remoting_host': 1,
17 }],
18 ],
19 },
20
6 'targets': [ 21 'targets': [
7 { 22 {
8 'target_name': 'remoting_all', 23 'target_name': 'remoting_all',
9 'type': 'none', 24 'type': 'none',
10 'dependencies': [ 25 'dependencies': [
11 '../remoting/remoting.gyp:*', 26 '../remoting/remoting.gyp:remoting_base',
12 '../remoting/app_remoting_webapp.gyp:*', 27 '../remoting/remoting.gyp:remoting_breakpad',
28 '../remoting/remoting.gyp:remoting_browser_test_resources',
29 '../remoting/remoting.gyp:remoting_client',
30 '../remoting/remoting.gyp:remoting_client_plugin',
31 '../remoting/remoting.gyp:remoting_protocol',
32 '../remoting/remoting.gyp:remoting_test_common',
33 '../remoting/remoting.gyp:remoting_unittests',
34 '../remoting/remoting.gyp:remoting_resources',
35 '../remoting/remoting.gyp:remoting_webapp',
36 '../remoting/remoting.gyp:remoting_webapp_html',
37 '../remoting/remoting.gyp:remoting_webapp_unittest',
38 '../remoting/app_remoting_webapp.gyp:ar_sample_app',
13 ], 39 ],
40
41 'conditions' : [
42 ['OS=="win"', {
43 'dependencies': [
44 '../remoting/remoting.gyp:remoting_breakpad_tester',
45 '../remoting/remoting.gyp:remoting_console',
46 '../remoting/remoting.gyp:remoting_core',
47 '../remoting/remoting.gyp:remoting_desktop',
48 '../remoting/remoting.gyp:remoting_host_installation',
49 '../remoting/remoting.gyp:remoting_windows_resources',
50 ],
51 }],
52 ['OS=="android"', {
53 'dependencies': [
54 '../remoting/remoting.gyp:remoting_android_client_java',
55 '../remoting/remoting.gyp:remoting_android_resources',
56 '../remoting/remoting.gyp:remoting_apk',
57 '../remoting/remoting.gyp:remoting_apk_manifest',
58 '../remoting/remoting.gyp:remoting_client_jni',
59 '../remoting/remoting.gyp:remoting_jni_headers',
60 '../remoting/remoting.gyp:remoting_test_apk',
61 '../remoting/remoting.gyp:remoting_unittests_apk',
62 ],
63 }],
64 ['enable_remoting_host==1', {
65 'dependencies': [
66 '../remoting/remoting.gyp:remoting_infoplist_strings',
67 '../remoting/remoting.gyp:remoting_it2me_host_static',
68 '../remoting/remoting.gyp:remoting_host',
69 '../remoting/remoting.gyp:remoting_host_setup_base',
70 '../remoting/remoting.gyp:remoting_native_messaging_base',
71 '../remoting/remoting.gyp:remoting_native_messaging_manifests',
72 '../remoting/remoting.gyp:remoting_perftests',
73 '../remoting/remoting.gyp:remoting_start_host',
74 ],
75 'conditions': [
76 ['chromeos==0', {
77 'dependencies': [
78 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host',
kelvinp 2015/02/04 20:51:22 Or should we follow through with our dummy approac
garykac 2015/02/06 02:18:41 Done.
79 ],
80 }],
81 ],
82 }],
83 ['enable_me2me_host==1', {
84 'dependencies': [
85 '../remoting/remoting.gyp:remoting_me2me_host',
86 '../remoting/remoting.gyp:remoting_me2me_host_archive',
87 '../remoting/remoting.gyp:remoting_me2me_host_static',
88 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
89 ],
90 }],
91 ],
92
14 }, # end of target 'remoting_all' 93 }, # end of target 'remoting_all'
15 ], # end of targets 94 ], # end of targets
16 } 95 }
OLDNEW
« no previous file with comments | « no previous file | remoting/remoting_host.gypi » ('j') | remoting/remoting_host.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698