OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("//build/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "common.cc", | 217 "common.cc", |
218 "common.h", | 218 "common.h", |
219 "cpumonitor.cc", | 219 "cpumonitor.cc", |
220 "cpumonitor.h", | 220 "cpumonitor.h", |
221 "crc32.cc", | 221 "crc32.cc", |
222 "crc32.h", | 222 "crc32.h", |
223 "cryptstring.cc", | 223 "cryptstring.cc", |
224 "cryptstring.h", | 224 "cryptstring.h", |
225 "diskcache.cc", | 225 "diskcache.cc", |
226 "diskcache.h", | 226 "diskcache.h", |
| 227 "filerotatingstream.cc", |
| 228 "filerotatingstream.h", |
227 "fileutils.cc", | 229 "fileutils.cc", |
228 "fileutils.h", | 230 "fileutils.h", |
229 "firewallsocketserver.cc", | 231 "firewallsocketserver.cc", |
230 "firewallsocketserver.h", | 232 "firewallsocketserver.h", |
231 "flags.cc", | 233 "flags.cc", |
232 "flags.h", | 234 "flags.h", |
233 "format_macros.h", | 235 "format_macros.h", |
234 "gunit_prod.h", | 236 "gunit_prod.h", |
235 "helpers.cc", | 237 "helpers.cc", |
236 "helpers.h", | 238 "helpers.h", |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "bind.h.pump", | 363 "bind.h.pump", |
362 "callback.h", | 364 "callback.h", |
363 "callback.h.pump", | 365 "callback.h.pump", |
364 "fileutils_mock.h", | 366 "fileutils_mock.h", |
365 "genericslot.h", | 367 "genericslot.h", |
366 "genericslot.h.pump", | 368 "genericslot.h.pump", |
367 "httpserver.cc", | 369 "httpserver.cc", |
368 "httpserver.h", | 370 "httpserver.h", |
369 "json.cc", | 371 "json.cc", |
370 "json.h", | 372 "json.h", |
| 373 "logsinks.cc", |
| 374 "logsinks.h", |
371 "mathutils.h", | 375 "mathutils.h", |
372 "multipart.cc", | 376 "multipart.cc", |
373 "multipart.h", | 377 "multipart.h", |
374 "natserver.cc", | 378 "natserver.cc", |
375 "natserver.h", | 379 "natserver.h", |
376 "natsocketfactory.cc", | 380 "natsocketfactory.cc", |
377 "natsocketfactory.h", | 381 "natsocketfactory.h", |
378 "nattypes.cc", | 382 "nattypes.cc", |
379 "nattypes.h", | 383 "nattypes.h", |
380 "optionsfile.cc", | 384 "optionsfile.cc", |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 defines += [ "CARBON_DEPRECATED=YES" ] | 629 defines += [ "CARBON_DEPRECATED=YES" ] |
626 } | 630 } |
627 | 631 |
628 if (is_linux || is_android) { | 632 if (is_linux || is_android) { |
629 sources += [ | 633 sources += [ |
630 "linux.cc", | 634 "linux.cc", |
631 "linux.h", | 635 "linux.h", |
632 ] | 636 ] |
633 } | 637 } |
634 } | 638 } |
OLD | NEW |