Chromium Code Reviews| 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("client") { | 7 source_set("client") { |
| 8 # Disabled the source filters because there are _mac files that need to | 8 # Disabled the source filters because there are _mac files that need to |
| 9 # be compiled on all platforms. | 9 # be compiled on all platforms. |
| 10 set_sources_assignment_filter([]) | 10 set_sources_assignment_filter([]) |
| 11 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, | 11 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, |
| 12 ".", | 12 ".", |
| 13 "//remoting") | 13 "//remoting") |
| 14 if (!is_nacl) { | |
|
Sergey Ulanov
2016/03/08 18:53:46
there is if(is_nacl) below. You can move this to e
nicholss
2016/03/08 21:20:25
Done.
| |
| 15 sources += rebase_path( | |
| 16 remoting_srcs_gypi_values.remoting_client_standalone_sources, | |
| 17 ".", | |
| 18 "//remoting") | |
| 19 } | |
| 14 set_sources_assignment_filter(sources_assignment_filter) | 20 set_sources_assignment_filter(sources_assignment_filter) |
| 15 | 21 |
| 16 configs += [ | 22 configs += [ |
| 17 "//build/config/compiler:wexit_time_destructors", | 23 "//build/config/compiler:wexit_time_destructors", |
| 18 "//remoting:version", | 24 "//remoting:version", |
| 19 ] | 25 ] |
| 20 | 26 |
| 21 deps = [ | 27 deps = [ |
| 22 "//remoting/base", | 28 "//remoting/base", |
| 23 "//remoting/codec", | 29 "//remoting/codec", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 56 configs += [ "//remoting:version" ] | 62 configs += [ "//remoting:version" ] |
| 57 | 63 |
| 58 deps = [ | 64 deps = [ |
| 59 ":client", | 65 ":client", |
| 60 "//remoting/proto", | 66 "//remoting/proto", |
| 61 "//testing/gmock", | 67 "//testing/gmock", |
| 62 "//testing/gtest", | 68 "//testing/gtest", |
| 63 "//third_party/webrtc", | 69 "//third_party/webrtc", |
| 64 ] | 70 ] |
| 65 } | 71 } |
| OLD | NEW |