OLD | NEW |
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("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
6 | 6 |
7 source_set("protocol") { | 7 source_set("protocol") { |
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
9 ".", | 9 ".", |
10 "//remoting") | 10 "//remoting") |
11 | 11 |
12 configs += [ | 12 configs += [ |
13 "//build/config:precompiled_headers", | |
14 "//build/config/compiler:no_size_t_to_int_warning", | 13 "//build/config/compiler:no_size_t_to_int_warning", |
15 "//build/config/compiler:wexit_time_destructors", | 14 "//build/config/compiler:wexit_time_destructors", |
16 ] | 15 ] |
17 | 16 |
18 public_deps = [ | 17 public_deps = [ |
19 "//remoting/proto", | 18 "//remoting/proto", |
20 "//third_party/libjingle", | 19 "//third_party/libjingle", |
21 ] | 20 ] |
22 deps = [ | 21 deps = [ |
23 "//base", | 22 "//base", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "third_party_authenticator_unittest.cc", | 86 "third_party_authenticator_unittest.cc", |
88 "v2_authenticator_unittest.cc", | 87 "v2_authenticator_unittest.cc", |
89 ] | 88 ] |
90 | 89 |
91 deps = [ | 90 deps = [ |
92 ":test_support", | 91 ":test_support", |
93 "//testing/gmock", | 92 "//testing/gmock", |
94 "//testing/gtest", | 93 "//testing/gtest", |
95 ] | 94 ] |
96 } | 95 } |
OLD | NEW |