Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 1408403002: Introduce rtc::ArrayView<T>, which keeps track of an array that it doesn't own (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Windows compile fix Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/array_view.h » ('j') | webrtc/base/array_view.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 include_dirs = [ rtc_ssl_root ] 87 include_dirs = [ rtc_ssl_root ]
88 } 88 }
89 } 89 }
90 90
91 # The subset of rtc_base approved for use outside of libjingle. 91 # The subset of rtc_base approved for use outside of libjingle.
92 static_library("rtc_base_approved") { 92 static_library("rtc_base_approved") {
93 configs += [ "..:common_config" ] 93 configs += [ "..:common_config" ]
94 public_configs = [ "..:common_inherited_config" ] 94 public_configs = [ "..:common_inherited_config" ]
95 95
96 sources = [ 96 sources = [
97 "array_view.h",
97 "atomicops.h", 98 "atomicops.h",
98 "bitbuffer.cc", 99 "bitbuffer.cc",
99 "bitbuffer.h", 100 "bitbuffer.h",
100 "buffer.cc", 101 "buffer.cc",
101 "buffer.h", 102 "buffer.h",
102 "bufferqueue.cc", 103 "bufferqueue.cc",
103 "bufferqueue.h", 104 "bufferqueue.h",
104 "bytebuffer.cc", 105 "bytebuffer.cc",
105 "bytebuffer.h", 106 "bytebuffer.h",
106 "byteorder.h", 107 "byteorder.h",
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 "linux.cc", 584 "linux.cc",
584 "linux.h", 585 "linux.h",
585 ] 586 ]
586 } 587 }
587 588
588 if (is_nacl) { 589 if (is_nacl) {
589 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 590 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
590 defines += [ "timezone=_timezone" ] 591 defines += [ "timezone=_timezone" ]
591 } 592 }
592 } 593 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/array_view.h » ('j') | webrtc/base/array_view.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698