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

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

Issue 1477013003: Build/use constructormagic.h unconditionally. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years 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/base.gyp » ('j') | no next file with comments »
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 "bitbuffer.h", 108 "bitbuffer.h",
109 "buffer.cc", 109 "buffer.cc",
110 "buffer.h", 110 "buffer.h",
111 "bufferqueue.cc", 111 "bufferqueue.cc",
112 "bufferqueue.h", 112 "bufferqueue.h",
113 "bytebuffer.cc", 113 "bytebuffer.cc",
114 "bytebuffer.h", 114 "bytebuffer.h",
115 "byteorder.h", 115 "byteorder.h",
116 "checks.cc", 116 "checks.cc",
117 "checks.h", 117 "checks.h",
118 "constructormagic.h",
118 "criticalsection.cc", 119 "criticalsection.cc",
119 "criticalsection.h", 120 "criticalsection.h",
120 "event.cc", 121 "event.cc",
121 "event.h", 122 "event.h",
122 "event_tracer.cc", 123 "event_tracer.cc",
123 "event_tracer.h", 124 "event_tracer.h",
124 "exp_filter.cc", 125 "exp_filter.cc",
125 "exp_filter.h", 126 "exp_filter.h",
126 "md5.cc", 127 "md5.cc",
127 "md5.h", 128 "md5.h",
(...skipping 27 matching lines...) Expand all
155 if (build_with_chromium) { 156 if (build_with_chromium) {
156 # Dependency on chromium's logging (in //base). 157 # Dependency on chromium's logging (in //base).
157 deps += [ "//base:base" ] 158 deps += [ "//base:base" ]
158 sources += [ 159 sources += [
159 "../../webrtc_overrides/webrtc/base/logging.cc", 160 "../../webrtc_overrides/webrtc/base/logging.cc",
160 "../../webrtc_overrides/webrtc/base/logging.h", 161 "../../webrtc_overrides/webrtc/base/logging.h",
161 ] 162 ]
162 include_dirs = [ "../../webrtc_overrides" ] 163 include_dirs = [ "../../webrtc_overrides" ]
163 } else { 164 } else {
164 sources += [ 165 sources += [
165 "constructormagic.h",
166 "logging.cc", 166 "logging.cc",
167 "logging.h", 167 "logging.h",
168 ] 168 ]
169 } 169 }
170 } 170 }
171 171
172 static_library("rtc_base") { 172 static_library("rtc_base") {
173 cflags = [] 173 cflags = []
174 cflags_cc = [] 174 cflags_cc = []
175 libs = [] 175 libs = []
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 "linux.cc", 598 "linux.cc",
599 "linux.h", 599 "linux.h",
600 ] 600 ]
601 } 601 }
602 602
603 if (is_nacl) { 603 if (is_nacl) {
604 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] 604 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
605 defines += [ "timezone=_timezone" ] 605 defines += [ "timezone=_timezone" ]
606 } 606 }
607 } 607 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698