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", |
13 "//build/config/compiler:no_size_t_to_int_warning", | 14 "//build/config/compiler:no_size_t_to_int_warning", |
14 "//build/config/compiler:wexit_time_destructors", | 15 "//build/config/compiler:wexit_time_destructors", |
15 ] | 16 ] |
16 | 17 |
17 public_deps = [ | 18 public_deps = [ |
18 "//remoting/proto", | 19 "//remoting/proto", |
19 "//third_party/libjingle", | 20 "//third_party/libjingle", |
20 ] | 21 ] |
21 deps = [ | 22 deps = [ |
22 "//base", | 23 "//base", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "third_party_authenticator_unittest.cc", | 87 "third_party_authenticator_unittest.cc", |
87 "v2_authenticator_unittest.cc", | 88 "v2_authenticator_unittest.cc", |
88 ] | 89 ] |
89 | 90 |
90 deps = [ | 91 deps = [ |
91 ":test_support", | 92 ":test_support", |
92 "//testing/gmock", | 93 "//testing/gmock", |
93 "//testing/gtest", | 94 "//testing/gtest", |
94 ] | 95 ] |
95 } | 96 } |
OLD | NEW |