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

Side by Side Diff: remoting/client/plugin/BUILD.gn

Issue 2640783004: Cleanups in remoting gn files. (Closed)
Patch Set: . Created 3 years, 11 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
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 assert(is_nacl, 5 assert(is_nacl,
6 "These targets must only be built using the untrusted NaCl toolchains.") 6 "These targets must only be built using the untrusted NaCl toolchains.")
7 7
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 9
10 executable("remoting_client_plugin_newlib") { 10 executable("remoting_client_plugin_newlib") {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ] 42 ]
43 43
44 configs += [ "//build/config/compiler:wexit_time_destructors" ] 44 configs += [ "//build/config/compiler:wexit_time_destructors" ]
45 45
46 deps = [ 46 deps = [
47 "//net", 47 "//net",
48 "//ppapi/cpp", 48 "//ppapi/cpp",
49 "//ppapi/native_client:ppapi_lib", 49 "//ppapi/native_client:ppapi_lib",
50 "//remoting/base", 50 "//remoting/base",
51 "//remoting/client", 51 "//remoting/client",
52 "//remoting/codec",
53 "//remoting/protocol", 52 "//remoting/protocol",
54 "//remoting/signaling", 53 "//remoting/signaling",
55 "//third_party/libyuv", 54 "//third_party/libyuv",
56 "//third_party/webrtc/modules/desktop_capture:primitives", 55 "//third_party/webrtc/modules/desktop_capture:primitives",
57 "//ui/events:dom_keycode_converter", 56 "//ui/events:dom_keycode_converter",
58 ] 57 ]
59 58
60 include_dirs = [ "//ppapi/lib/gl/include" ] 59 include_dirs = [ "//ppapi/lib/gl/include" ]
61 } 60 }
62 61
63 if (enable_nacl && is_debug) { 62 if (enable_nacl && is_debug) {
64 copy("remoting_client_plugin_newlib_debug") { 63 copy("remoting_client_plugin_newlib_debug") {
65 public_deps = [ 64 public_deps = [
66 ":remoting_client_plugin_newlib", 65 ":remoting_client_plugin_newlib",
67 ] 66 ]
68 sources = [ 67 sources = [
69 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", 68 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe",
70 ] 69 ]
71 outputs = [ 70 outputs = [
72 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", 71 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug",
73 ] 72 ]
74 } 73 }
75 } 74 }
OLDNEW
« no previous file with comments | « remoting/client/BUILD.gn ('k') | remoting/codec/BUILD.gn » ('j') | remoting/codec/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698