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

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

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