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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 }], # OS=="mac" and build_with_chromium==0 | 129 }], # OS=="mac" and build_with_chromium==0 |
130 ], | 130 ], |
131 }, | 131 }, |
132 { | 132 { |
133 'target_name': 'rtc_task_queue', | 133 'target_name': 'rtc_task_queue', |
134 'type': 'static_library', | 134 'type': 'static_library', |
135 'dependencies': [ | 135 'dependencies': [ |
136 'rtc_base_approved', | 136 'rtc_base_approved', |
137 ], | 137 ], |
138 'sources': [ | 138 'sources': [ |
| 139 'sequenced_task_checker.h', |
| 140 'sequenced_task_checker_impl.cc', |
| 141 'sequenced_task_checker_impl.h', |
139 'task_queue.h', | 142 'task_queue.h', |
140 'task_queue_posix.h', | 143 'task_queue_posix.h', |
141 ], | 144 ], |
142 'conditions': [ | 145 'conditions': [ |
143 ['build_libevent==1', { | 146 ['build_libevent==1', { |
144 'dependencies': [ | 147 'dependencies': [ |
145 '<(DEPTH)/base/third_party/libevent/libevent.gyp:libevent', | 148 '<(DEPTH)/base/third_party/libevent/libevent.gyp:libevent', |
146 ], | 149 ], |
147 }], | 150 }], |
148 ['enable_libevent==1', { | 151 ['enable_libevent==1', { |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 }, | 646 }, |
644 { | 647 { |
645 'target_name': 'gtest_prod', | 648 'target_name': 'gtest_prod', |
646 'type': 'static_library', | 649 'type': 'static_library', |
647 'sources': [ | 650 'sources': [ |
648 'gtest_prod_util.h', | 651 'gtest_prod_util.h', |
649 ], | 652 ], |
650 }, | 653 }, |
651 ], | 654 ], |
652 } | 655 } |
OLD | NEW |