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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 "task.cc", | 410 "task.cc", |
411 "task.h", | 411 "task.h", |
412 "taskparent.cc", | 412 "taskparent.cc", |
413 "taskparent.h", | 413 "taskparent.h", |
414 "taskrunner.cc", | 414 "taskrunner.cc", |
415 "taskrunner.h", | 415 "taskrunner.h", |
416 "thread.cc", | 416 "thread.cc", |
417 "thread.h", | 417 "thread.h", |
418 "urlencode.cc", | 418 "urlencode.cc", |
419 "urlencode.h", | 419 "urlencode.h", |
420 "worker.cc", | |
421 "worker.h", | |
422 ] | 420 ] |
423 | 421 |
424 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default | 422 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default |
425 # compiler settings. | 423 # compiler settings. |
426 suppressed_configs += [ "//build/config/compiler:chromium_code" ] | 424 suppressed_configs += [ "//build/config/compiler:chromium_code" ] |
427 configs += [ "//build/config/compiler:no_chromium_code" ] | 425 configs += [ "//build/config/compiler:no_chromium_code" ] |
428 if (!is_win) { | 426 if (!is_win) { |
429 cflags += [ "-Wno-uninitialized" ] | 427 cflags += [ "-Wno-uninitialized" ] |
430 } | 428 } |
431 | 429 |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 "java/src/org/webrtc/Logging.java", | 736 "java/src/org/webrtc/Logging.java", |
739 "java/src/org/webrtc/Size.java", | 737 "java/src/org/webrtc/Size.java", |
740 "java/src/org/webrtc/ThreadUtils.java", | 738 "java/src/org/webrtc/ThreadUtils.java", |
741 ] | 739 ] |
742 | 740 |
743 deps = [ | 741 deps = [ |
744 "//base:base_java", | 742 "//base:base_java", |
745 ] | 743 ] |
746 } | 744 } |
747 } | 745 } |
OLD | NEW |