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

Unified Diff: webrtc/base/base.gyp

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, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/base.gyp
diff --git a/webrtc/base/base.gyp b/webrtc/base/base.gyp
index 6e3b02e5bd08bcd473f3741cb937e1b4c73937c8..f10bfb58d103d92bc3ed8d41673f16a46c7985ee 100644
--- a/webrtc/base/base.gyp
+++ b/webrtc/base/base.gyp
@@ -54,6 +54,8 @@
'event_tracer.h',
'exp_filter.cc',
'exp_filter.h',
+ 'file.cc',
+ 'file.h',
'format_macros.h',
'location.h',
'location.cc',
@@ -102,6 +104,16 @@
'trace_event.h',
],
'conditions': [
+ ['os_posix==1', {
+ 'sources': [
+ 'file_posix.cc',
+ ],
+ }],
+ ['OS=="win"', {
+ 'sources': [
+ 'file_win.cc',
+ ],
+ }],
['build_with_chromium==1', {
'dependencies': [
'<(DEPTH)/base/base.gyp:base',
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698