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

Side by Side Diff: remoting/BUILD.gn

Issue 1100763002: Inject CanAddURLToHistory into TopSitesImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs
Patch Set: Fix error introduced during rebase Created 5 years, 7 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 | « ppapi/tests/power_saver_test_plugin.cc ('k') | remoting/client/plugin/chromoting_instance.cc » ('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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//remoting/remoting_version.gni") 7 import("//remoting/remoting_version.gni")
8 import("//remoting/remoting_enable.gni") 8 import("//remoting/remoting_enable.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
11 # Various remoting targets need this version definition. 11 # Various remoting targets need this version definition.
12 config("version") { 12 config("version") {
13 defines = [ "VERSION=$version_full" ] 13 defines = [ "VERSION=$version_full" ]
14 } 14 }
15 15
16 group("remoting_all") { 16 group("remoting_all") {
17 testonly = true 17 testonly = true
18 18
19 deps = [ 19 deps = [
20 #"//remoting:remoting_browser_test_resources", 20 #"//remoting:remoting_browser_test_resources",
21 "//remoting:remoting_unittests", 21 "//remoting:remoting_unittests",
22 #"//remoting:remoting_webapp_unittests", 22 #"//remoting:remoting_webapp_unittests",
23 #"//app_remoting_test.gyp:ar_sample_test_driver", 23 #"//app_remoting_test.gyp:ar_sample_test_driver",
24 #"//app_remoting_webapp.gyp:ar_sample_app", 24 #"//app_remoting_webapp.gyp:ar_sample_app",
25 ] 25 ]
26 26
27 if ((is_linux && !is_chromeos) || is_mac) { 27 if ((is_linux && !is_chromeos) || is_mac || is_win) {
28 deps += [ 28 deps += [ "//remoting/webapp" ]
29 # TODO(gyp) Enable this for Windows once the webapp can be built without
30 # exceeding the 8k cmd line limit on Windows.
31 "//remoting/webapp",
32 ]
33 } 29 }
34 30
35 if (is_win) { 31 if (is_win) {
36 deps += [ 32 deps += [
37 #"//remoting:remoting_breakpad_tester", 33 #"//remoting:remoting_breakpad_tester",
38 #"//remoting:remoting_console", 34 #"//remoting:remoting_console",
39 #"//remoting:remoting_desktop", 35 #"//remoting:remoting_desktop",
40 #"//remoting:remoting_host_installation", 36 #"//remoting:remoting_host_installation",
41 ] 37 ]
42 } 38 }
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 } 268 }
273 } 269 }
274 270
275 group("remoting_key_tester_pexe") { 271 group("remoting_key_tester_pexe") {
276 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. 272 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain.
277 #sources = [ 273 #sources = [
278 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", 274 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc",
279 #] 275 #]
280 } 276 }
281 } 277 }
OLDNEW
« no previous file with comments | « ppapi/tests/power_saver_test_plugin.cc ('k') | remoting/client/plugin/chromoting_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698