OLD | NEW |
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 if (is_nacl) { | 5 if (is_nacl) { |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 } | 7 } |
8 | 8 |
9 if (is_nacl && is_nacl_glibc) { | 9 if (is_nacl && is_nacl_glibc) { |
10 cpp_target_type = "shared_library" | 10 cpp_target_type = "shared_library" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 "view.cc", | 154 "view.cc", |
155 "view.h", | 155 "view.h", |
156 "vpn_provider.cc", | 156 "vpn_provider.cc", |
157 "vpn_provider.h", | 157 "vpn_provider.h", |
158 "websocket.cc", | 158 "websocket.cc", |
159 "websocket.h", | 159 "websocket.h", |
160 | 160 |
161 # Dev interfaces. | 161 # Dev interfaces. |
162 "dev/audio_input_dev.cc", | 162 "dev/audio_input_dev.cc", |
163 "dev/audio_input_dev.h", | 163 "dev/audio_input_dev.h", |
| 164 "dev/audio_output_dev.cc", |
| 165 "dev/audio_output_dev.h", |
164 "dev/buffer_dev.cc", | 166 "dev/buffer_dev.cc", |
165 "dev/buffer_dev.h", | 167 "dev/buffer_dev.h", |
166 "dev/crypto_dev.cc", | 168 "dev/crypto_dev.cc", |
167 "dev/crypto_dev.h", | 169 "dev/crypto_dev.h", |
168 "dev/cursor_control_dev.cc", | 170 "dev/cursor_control_dev.cc", |
169 "dev/cursor_control_dev.h", | 171 "dev/cursor_control_dev.h", |
170 "dev/device_ref_dev.cc", | 172 "dev/device_ref_dev.cc", |
171 "dev/device_ref_dev.h", | 173 "dev/device_ref_dev.h", |
172 "dev/file_chooser_dev.cc", | 174 "dev/file_chooser_dev.cc", |
173 "dev/file_chooser_dev.h", | 175 "dev/file_chooser_dev.h", |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 # When using gcc, we hide all symbols by default, but that breaks at | 300 # When using gcc, we hide all symbols by default, but that breaks at |
299 # link time as the test executable requires symbols defined in the | 301 # link time as the test executable requires symbols defined in the |
300 # shared library. | 302 # shared library. |
301 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | 303 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
302 configs += [ "//build/config/gcc:symbol_visibility_default" ] | 304 configs += [ "//build/config/gcc:symbol_visibility_default" ] |
303 | 305 |
304 cflags = [ "-fPIC" ] | 306 cflags = [ "-fPIC" ] |
305 } | 307 } |
306 } | 308 } |
307 } | 309 } |
OLD | NEW |