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