| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "thread_checker.h", | 138 "thread_checker.h", |
| 139 "thread_checker_impl.cc", | 139 "thread_checker_impl.cc", |
| 140 "thread_checker_impl.h", | 140 "thread_checker_impl.h", |
| 141 "timeutils.cc", | 141 "timeutils.cc", |
| 142 "timeutils.h", | 142 "timeutils.h", |
| 143 "trace_event.h", | 143 "trace_event.h", |
| 144 ] | 144 ] |
| 145 | 145 |
| 146 if (!build_with_chromium) { | 146 if (!build_with_chromium) { |
| 147 sources += [ | 147 sources += [ |
| 148 "basictypes.h", | |
| 149 "constructormagic.h", | 148 "constructormagic.h", |
| 150 "logging.cc", | 149 "logging.cc", |
| 151 "logging.h", | 150 "logging.h", |
| 152 ] | 151 ] |
| 153 } | 152 } |
| 154 } | 153 } |
| 155 | 154 |
| 156 static_library("rtc_base") { | 155 static_library("rtc_base") { |
| 157 cflags = [] | 156 cflags = [] |
| 158 cflags_cc = [] | 157 cflags_cc = [] |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 "linux.cc", | 586 "linux.cc", |
| 588 "linux.h", | 587 "linux.h", |
| 589 ] | 588 ] |
| 590 } | 589 } |
| 591 | 590 |
| 592 if (is_nacl) { | 591 if (is_nacl) { |
| 593 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 592 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 594 defines += [ "timezone=_timezone" ] | 593 defines += [ "timezone=_timezone" ] |
| 595 } | 594 } |
| 596 } | 595 } |
| OLD | NEW |