OLD | NEW |
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 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'copyonwritebuffer.h', | 47 'copyonwritebuffer.h', |
48 'criticalsection.cc', | 48 'criticalsection.cc', |
49 'criticalsection.h', | 49 'criticalsection.h', |
50 'deprecation.h', | 50 'deprecation.h', |
51 'event.cc', | 51 'event.cc', |
52 'event.h', | 52 'event.h', |
53 'event_tracer.cc', | 53 'event_tracer.cc', |
54 'event_tracer.h', | 54 'event_tracer.h', |
55 'exp_filter.cc', | 55 'exp_filter.cc', |
56 'exp_filter.h', | 56 'exp_filter.h', |
| 57 'file.cc', |
| 58 'file.h', |
57 'format_macros.h', | 59 'format_macros.h', |
58 'location.h', | 60 'location.h', |
59 'location.cc', | 61 'location.cc', |
60 'md5.cc', | 62 'md5.cc', |
61 'md5.h', | 63 'md5.h', |
62 'md5digest.cc', | 64 'md5digest.cc', |
63 'md5digest.h', | 65 'md5digest.h', |
64 'mod_ops.h', | 66 'mod_ops.h', |
65 'onetimeevent.h', | 67 'onetimeevent.h', |
66 'optional.h', | 68 'optional.h', |
(...skipping 28 matching lines...) Expand all Loading... |
95 'thread_checker.h', | 97 'thread_checker.h', |
96 'thread_checker_impl.cc', | 98 'thread_checker_impl.cc', |
97 'thread_checker_impl.h', | 99 'thread_checker_impl.h', |
98 'timestampaligner.cc', | 100 'timestampaligner.cc', |
99 'timestampaligner.h', | 101 'timestampaligner.h', |
100 'timeutils.cc', | 102 'timeutils.cc', |
101 'timeutils.h', | 103 'timeutils.h', |
102 'trace_event.h', | 104 'trace_event.h', |
103 ], | 105 ], |
104 'conditions': [ | 106 'conditions': [ |
| 107 ['os_posix==1', { |
| 108 'sources': [ |
| 109 'file_posix.cc', |
| 110 ], |
| 111 }], |
| 112 ['OS=="win"', { |
| 113 'sources': [ |
| 114 'file_win.cc', |
| 115 ], |
| 116 }], |
105 ['build_with_chromium==1', { | 117 ['build_with_chromium==1', { |
106 'dependencies': [ | 118 'dependencies': [ |
107 '<(DEPTH)/base/base.gyp:base', | 119 '<(DEPTH)/base/base.gyp:base', |
108 ], | 120 ], |
109 'include_dirs': [ | 121 'include_dirs': [ |
110 '../../webrtc_overrides', | 122 '../../webrtc_overrides', |
111 ], | 123 ], |
112 'sources': [ | 124 'sources': [ |
113 '../../webrtc_overrides/webrtc/base/logging.cc', | 125 '../../webrtc_overrides/webrtc/base/logging.cc', |
114 '../../webrtc_overrides/webrtc/base/logging.h', | 126 '../../webrtc_overrides/webrtc/base/logging.h', |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 }, | 686 }, |
675 { | 687 { |
676 'target_name': 'gtest_prod', | 688 'target_name': 'gtest_prod', |
677 'type': 'static_library', | 689 'type': 'static_library', |
678 'sources': [ | 690 'sources': [ |
679 'gtest_prod_util.h', | 691 'gtest_prod_util.h', |
680 ], | 692 ], |
681 }, | 693 }, |
682 ], | 694 ], |
683 } | 695 } |
OLD | NEW |