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

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

Issue 2299983002: Revert of Initial version of new file wrapper (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 3 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 | « webrtc/BUILD.gn ('k') | 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "copyonwritebuffer.h", 117 "copyonwritebuffer.h",
118 "criticalsection.cc", 118 "criticalsection.cc",
119 "criticalsection.h", 119 "criticalsection.h",
120 "deprecation.h", 120 "deprecation.h",
121 "event.cc", 121 "event.cc",
122 "event.h", 122 "event.h",
123 "event_tracer.cc", 123 "event_tracer.cc",
124 "event_tracer.h", 124 "event_tracer.h",
125 "exp_filter.cc", 125 "exp_filter.cc",
126 "exp_filter.h", 126 "exp_filter.h",
127 "file.cc",
128 "file.h",
129 "format_macros.h", 127 "format_macros.h",
130 "location.cc", 128 "location.cc",
131 "location.h", 129 "location.h",
132 "md5.cc", 130 "md5.cc",
133 "md5.h", 131 "md5.h",
134 "md5digest.cc", 132 "md5digest.cc",
135 "md5digest.h", 133 "md5digest.h",
136 "mod_ops.h", 134 "mod_ops.h",
137 "onetimeevent.h", 135 "onetimeevent.h",
138 "optional.h", 136 "optional.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "timestampaligner.h", 169 "timestampaligner.h",
172 "timeutils.cc", 170 "timeutils.cc",
173 "timeutils.h", 171 "timeutils.h",
174 "trace_event.h", 172 "trace_event.h",
175 ] 173 ]
176 174
177 if (is_android) { 175 if (is_android) {
178 libs += [ "log" ] 176 libs += [ "log" ]
179 } 177 }
180 178
181 if (is_posix) {
182 sources += [ "file_posix.cc" ]
183 }
184
185 if (is_win) {
186 sources += [ "file_win.cc" ]
187 }
188
189 if (build_with_chromium) { 179 if (build_with_chromium) {
190 # Dependency on chromium's logging (in //base). 180 # Dependency on chromium's logging (in //base).
191 deps += [ "//base:base" ] 181 deps += [ "//base:base" ]
192 sources += [ 182 sources += [
193 "../../webrtc_overrides/webrtc/base/logging.cc", 183 "../../webrtc_overrides/webrtc/base/logging.cc",
194 "../../webrtc_overrides/webrtc/base/logging.h", 184 "../../webrtc_overrides/webrtc/base/logging.h",
195 ] 185 ]
196 include_dirs = [ "../../webrtc_overrides" ] 186 include_dirs = [ "../../webrtc_overrides" ]
197 } else { 187 } else {
198 sources += [ 188 sources += [
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 "java/src/org/webrtc/Logging.java", 753 "java/src/org/webrtc/Logging.java",
764 "java/src/org/webrtc/Size.java", 754 "java/src/org/webrtc/Size.java",
765 "java/src/org/webrtc/ThreadUtils.java", 755 "java/src/org/webrtc/ThreadUtils.java",
766 ] 756 ]
767 757
768 deps = [ 758 deps = [
769 "//base:base_java", 759 "//base:base_java",
770 ] 760 ]
771 } 761 }
772 } 762 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698