| 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     "stream.cc", |  410     "stream.cc", | 
|  411     "stream.h", |  411     "stream.h", | 
|  412     "task.cc", |  412     "task.cc", | 
|  413     "task.h", |  413     "task.h", | 
|  414     "taskparent.cc", |  414     "taskparent.cc", | 
|  415     "taskparent.h", |  415     "taskparent.h", | 
|  416     "taskrunner.cc", |  416     "taskrunner.cc", | 
|  417     "taskrunner.h", |  417     "taskrunner.h", | 
|  418     "thread.cc", |  418     "thread.cc", | 
|  419     "thread.h", |  419     "thread.h", | 
|  420     "timing.cc", |  | 
|  421     "timing.h", |  | 
|  422     "urlencode.cc", |  420     "urlencode.cc", | 
|  423     "urlencode.h", |  421     "urlencode.h", | 
|  424     "worker.cc", |  422     "worker.cc", | 
|  425     "worker.h", |  423     "worker.h", | 
|  426   ] |  424   ] | 
|  427  |  425  | 
|  428   # TODO(henrike): issue 3307, make rtc_base build with the Chromium default |  426   # TODO(henrike): issue 3307, make rtc_base build with the Chromium default | 
|  429   # compiler settings. |  427   # compiler settings. | 
|  430   configs -= [ "//build/config/compiler:chromium_code" ] |  428   configs -= [ "//build/config/compiler:chromium_code" ] | 
|  431   configs += [ "//build/config/compiler:no_chromium_code" ] |  429   configs += [ "//build/config/compiler:no_chromium_code" ] | 
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  709     testonly = true |  707     testonly = true | 
|  710     sources = [ |  708     sources = [ | 
|  711       # Also use this as a convenient dumping ground for misc files that are |  709       # Also use this as a convenient dumping ground for misc files that are | 
|  712       # included by multiple targets below. |  710       # included by multiple targets below. | 
|  713       "fakeclock.cc", |  711       "fakeclock.cc", | 
|  714       "fakeclock.h", |  712       "fakeclock.h", | 
|  715       "fakenetwork.h", |  713       "fakenetwork.h", | 
|  716       "fakesslidentity.h", |  714       "fakesslidentity.h", | 
|  717       "faketaskrunner.h", |  715       "faketaskrunner.h", | 
|  718       "gunit.h", |  716       "gunit.h", | 
|  719       "test/faketiming.h", |  | 
|  720       "testbase64.h", |  717       "testbase64.h", | 
|  721       "testechoserver.h", |  718       "testechoserver.h", | 
|  722       "testutils.h", |  719       "testutils.h", | 
|  723       "timedelta.h", |  720       "timedelta.h", | 
|  724       "unittest_main.cc", |  721       "unittest_main.cc", | 
|  725     ] |  722     ] | 
|  726     configs += [ |  723     configs += [ | 
|  727       "..:common_config", |  724       "..:common_config", | 
|  728       ":rtc_base_tests_utils_warnings_config", |  725       ":rtc_base_tests_utils_warnings_config", | 
|  729     ] |  726     ] | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
|  753       "java/src/org/webrtc/Logging.java", |  750       "java/src/org/webrtc/Logging.java", | 
|  754       "java/src/org/webrtc/Size.java", |  751       "java/src/org/webrtc/Size.java", | 
|  755       "java/src/org/webrtc/ThreadUtils.java", |  752       "java/src/org/webrtc/ThreadUtils.java", | 
|  756     ] |  753     ] | 
|  757  |  754  | 
|  758     deps = [ |  755     deps = [ | 
|  759       "//base:base_java", |  756       "//base:base_java", | 
|  760     ] |  757     ] | 
|  761   } |  758   } | 
|  762 } |  759 } | 
| OLD | NEW |