Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: webrtc/base/base.gyp

Issue 2367853002: Add support for WeakPtr<T> (Closed)
Patch Set: Fix base.gyp Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/weak_ptr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/weak_ptr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698