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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 { | 160 { |
161 'target_name': 'rtc_task_queue', | 161 'target_name': 'rtc_task_queue', |
162 'type': 'static_library', | 162 'type': 'static_library', |
163 'dependencies': [ | 163 'dependencies': [ |
164 'rtc_base_approved', | 164 'rtc_base_approved', |
165 ], | 165 ], |
166 'sources': [ | 166 'sources': [ |
167 'sequenced_task_checker.h', | 167 'sequenced_task_checker.h', |
168 'sequenced_task_checker_impl.cc', | 168 'sequenced_task_checker_impl.cc', |
169 'sequenced_task_checker_impl.h', | 169 'sequenced_task_checker_impl.h', |
| 170 'weak_ptr.cc', |
| 171 'weak_ptr.h', |
170 ], | 172 ], |
171 'conditions': [ | 173 'conditions': [ |
172 ['build_with_chromium==1', { | 174 ['build_with_chromium==1', { |
173 'include_dirs': [ | 175 'include_dirs': [ |
174 '../../webrtc_overrides' | 176 '../../webrtc_overrides' |
175 ], | 177 ], |
176 'sources' : [ | 178 'sources' : [ |
177 '../../webrtc_overrides/webrtc/base/task_queue.cc', | 179 '../../webrtc_overrides/webrtc/base/task_queue.cc', |
178 '../../webrtc_overrides/webrtc/base/task_queue.h', | 180 '../../webrtc_overrides/webrtc/base/task_queue.h', |
179 ] | 181 ] |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 }, | 669 }, |
668 { | 670 { |
669 'target_name': 'gtest_prod', | 671 'target_name': 'gtest_prod', |
670 'type': 'static_library', | 672 'type': 'static_library', |
671 'sources': [ | 673 'sources': [ |
672 'gtest_prod_util.h', | 674 'gtest_prod_util.h', |
673 ], | 675 ], |
674 }, | 676 }, |
675 ], | 677 ], |
676 } | 678 } |
OLD | NEW |