| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 configs += [ "..:common_config" ] | 96 configs += [ "..:common_config" ] |
| 97 public_configs = [ "..:common_inherited_config" ] | 97 public_configs = [ "..:common_inherited_config" ] |
| 98 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 98 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
| 99 | 99 |
| 100 sources = [ | 100 sources = [ |
| 101 "array_view.h", | 101 "array_view.h", |
| 102 "atomicops.h", | 102 "atomicops.h", |
| 103 "bind.h", | 103 "bind.h", |
| 104 "bitbuffer.cc", | 104 "bitbuffer.cc", |
| 105 "bitbuffer.h", | 105 "bitbuffer.h", |
| 106 "buffer.cc", | |
| 107 "buffer.h", | 106 "buffer.h", |
| 108 "bufferqueue.cc", | 107 "bufferqueue.cc", |
| 109 "bufferqueue.h", | 108 "bufferqueue.h", |
| 110 "bytebuffer.cc", | 109 "bytebuffer.cc", |
| 111 "bytebuffer.h", | 110 "bytebuffer.h", |
| 112 "byteorder.h", | 111 "byteorder.h", |
| 113 "checks.cc", | 112 "checks.cc", |
| 114 "checks.h", | 113 "checks.h", |
| 115 "constructormagic.h", | 114 "constructormagic.h", |
| 116 "copyonwritebuffer.cc", | 115 "copyonwritebuffer.cc", |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 defines += [ "timezone=_timezone" ] | 595 defines += [ "timezone=_timezone" ] |
| 597 sources -= [ "ifaddrs_converter.cc" ] | 596 sources -= [ "ifaddrs_converter.cc" ] |
| 598 } | 597 } |
| 599 } | 598 } |
| 600 | 599 |
| 601 source_set("gtest_prod") { | 600 source_set("gtest_prod") { |
| 602 sources = [ | 601 sources = [ |
| 603 "gtest_prod_util.h", | 602 "gtest_prod_util.h", |
| 604 ] | 603 ] |
| 605 } | 604 } |
| OLD | NEW |