| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 "sslfingerprint.cc", | 496 "sslfingerprint.cc", |
| 497 "sslfingerprint.h", | 497 "sslfingerprint.h", |
| 498 "sslidentity.cc", | 498 "sslidentity.cc", |
| 499 "sslidentity.h", | 499 "sslidentity.h", |
| 500 "sslstreamadapter.cc", | 500 "sslstreamadapter.cc", |
| 501 "sslstreamadapter.h", | 501 "sslstreamadapter.h", |
| 502 "stream.cc", | 502 "stream.cc", |
| 503 "stream.h", | 503 "stream.h", |
| 504 "thread.cc", | 504 "thread.cc", |
| 505 "thread.h", | 505 "thread.h", |
| 506 "virtualsocketserver.cc", |
| 507 "virtualsocketserver.h", |
| 506 ] | 508 ] |
| 507 | 509 |
| 508 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default | 510 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default |
| 509 # compiler settings. | 511 # compiler settings. |
| 510 suppressed_configs += [ "//build/config/compiler:chromium_code" ] | 512 suppressed_configs += [ "//build/config/compiler:chromium_code" ] |
| 511 configs += [ "//build/config/compiler:no_chromium_code" ] | 513 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 512 if (!is_win) { | 514 if (!is_win) { |
| 513 cflags += [ "-Wno-uninitialized" ] | 515 cflags += [ "-Wno-uninitialized" ] |
| 514 } | 516 } |
| 515 | 517 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 528 "mathutils.h", | 530 "mathutils.h", |
| 529 "optionsfile.cc", | 531 "optionsfile.cc", |
| 530 "optionsfile.h", | 532 "optionsfile.h", |
| 531 "rollingaccumulator.h", | 533 "rollingaccumulator.h", |
| 532 "sslroots.h", | 534 "sslroots.h", |
| 533 "testbase64.h", | 535 "testbase64.h", |
| 534 "testclient.cc", | 536 "testclient.cc", |
| 535 "testclient.h", | 537 "testclient.h", |
| 536 "transformadapter.cc", | 538 "transformadapter.cc", |
| 537 "transformadapter.h", | 539 "transformadapter.h", |
| 538 "virtualsocketserver.cc", | |
| 539 "virtualsocketserver.h", | |
| 540 "window.h", | 540 "window.h", |
| 541 ] | 541 ] |
| 542 | 542 |
| 543 if (is_win) { | 543 if (is_win) { |
| 544 sources += [ | 544 sources += [ |
| 545 "win32socketinit.cc", | 545 "win32socketinit.cc", |
| 546 "win32socketinit.h", | 546 "win32socketinit.h", |
| 547 "win32socketserver.cc", | 547 "win32socketserver.cc", |
| 548 "win32socketserver.h", | 548 "win32socketserver.h", |
| 549 ] | 549 ] |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 | 977 |
| 978 if (is_android) { | 978 if (is_android) { |
| 979 android_library("base_java") { | 979 android_library("base_java") { |
| 980 java_files = [ | 980 java_files = [ |
| 981 "java/src/org/webrtc/Logging.java", | 981 "java/src/org/webrtc/Logging.java", |
| 982 "java/src/org/webrtc/Size.java", | 982 "java/src/org/webrtc/Size.java", |
| 983 "java/src/org/webrtc/ThreadUtils.java", | 983 "java/src/org/webrtc/ThreadUtils.java", |
| 984 ] | 984 ] |
| 985 } | 985 } |
| 986 } | 986 } |
| OLD | NEW |