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 'location.h', | 59 'location.h', |
58 'location.cc', | 60 'location.cc', |
59 'md5.cc', | 61 'md5.cc', |
60 'md5.h', | 62 'md5.h', |
61 'md5digest.cc', | 63 'md5digest.cc', |
62 'md5digest.h', | 64 'md5digest.h', |
63 'mod_ops.h', | 65 'mod_ops.h', |
64 'onetimeevent.h', | 66 'onetimeevent.h', |
65 'optional.h', | 67 'optional.h', |
66 'platform_file.cc', | 68 'platform_file.cc', |
(...skipping 27 matching lines...) Expand all Loading... |
94 'thread_checker.h', | 96 'thread_checker.h', |
95 'thread_checker_impl.cc', | 97 'thread_checker_impl.cc', |
96 'thread_checker_impl.h', | 98 'thread_checker_impl.h', |
97 'timestampaligner.cc', | 99 'timestampaligner.cc', |
98 'timestampaligner.h', | 100 'timestampaligner.h', |
99 'timeutils.cc', | 101 'timeutils.cc', |
100 'timeutils.h', | 102 'timeutils.h', |
101 'trace_event.h', | 103 'trace_event.h', |
102 ], | 104 ], |
103 'conditions': [ | 105 'conditions': [ |
| 106 ['os_posix==1', { |
| 107 'sources': [ |
| 108 'file_posix.cc', |
| 109 ], |
| 110 }], |
| 111 ['OS=="win"', { |
| 112 'sources': [ |
| 113 'file_win.cc', |
| 114 ], |
| 115 }], |
104 ['build_with_chromium==1', { | 116 ['build_with_chromium==1', { |
105 'dependencies': [ | 117 'dependencies': [ |
106 '<(DEPTH)/base/base.gyp:base', | 118 '<(DEPTH)/base/base.gyp:base', |
107 ], | 119 ], |
108 'include_dirs': [ | 120 'include_dirs': [ |
109 '../../webrtc_overrides', | 121 '../../webrtc_overrides', |
110 ], | 122 ], |
111 'sources': [ | 123 'sources': [ |
112 '../../webrtc_overrides/webrtc/base/logging.cc', | 124 '../../webrtc_overrides/webrtc/base/logging.cc', |
113 '../../webrtc_overrides/webrtc/base/logging.h', | 125 '../../webrtc_overrides/webrtc/base/logging.h', |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 }, | 664 }, |
653 { | 665 { |
654 'target_name': 'gtest_prod', | 666 'target_name': 'gtest_prod', |
655 'type': 'static_library', | 667 'type': 'static_library', |
656 'sources': [ | 668 'sources': [ |
657 'gtest_prod_util.h', | 669 'gtest_prod_util.h', |
658 ], | 670 ], |
659 }, | 671 }, |
660 ], | 672 ], |
661 } | 673 } |
OLD | NEW |