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

Side by Side Diff: remoting/host/it2me/BUILD.gn

Issue 1293073006: Make gtk2/gtk3 compile time switchable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide gkt3 targets when use_gtk3==0. Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//remoting/remoting_host.gni") 6 import("//remoting/remoting_host.gni")
7 import("//remoting/remoting_srcs.gni") 7 import("//remoting/remoting_srcs.gni")
8 8
9 source_set("common") { 9 source_set("common") {
10 sources = rebase_path( 10 sources = rebase_path(
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//remoting/host/native_messaging", 46 "//remoting/host/native_messaging",
47 "//remoting/proto", 47 "//remoting/proto",
48 "//ui/gfx", 48 "//ui/gfx",
49 ] 49 ]
50 50
51 if (enable_webrtc) { 51 if (enable_webrtc) {
52 deps += [ "//third_party/libjingle:libjingle_webrtc" ] 52 deps += [ "//third_party/libjingle:libjingle_webrtc" ]
53 } 53 }
54 54
55 if (is_linux) { 55 if (is_linux) {
56 deps += [ "//build/config/linux/gtk" ] 56 deps += [ "//build/config/linux/gtk2" ]
Nico 2015/08/25 00:23:52 same question
57 } 57 }
58 } 58 }
59 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698