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

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

Issue 1985533002: Fix component build in chrome after recent TaskQueue cl (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | no next file » | 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'sources': [ 109 'sources': [
110 '../../webrtc_overrides/webrtc/base/logging.cc', 110 '../../webrtc_overrides/webrtc/base/logging.cc',
111 '../../webrtc_overrides/webrtc/base/logging.h', 111 '../../webrtc_overrides/webrtc/base/logging.h',
112 ], 112 ],
113 }, { 113 }, {
114 'sources': [ 114 'sources': [
115 'logging.cc', 115 'logging.cc',
116 'logging.h', 116 'logging.h',
117 'logging_mac.mm', 117 'logging_mac.mm',
118 ], 118 ],
119 'conditions': [ 119 }],
120 ['build_libevent==1', { 120 ['build_libevent==1', {
121 'dependencies': [ 121 'dependencies': [
122 '<(DEPTH)/base/third_party/libevent/libevent.gyp:libevent', 122 '<(DEPTH)/base/third_party/libevent/libevent.gyp:libevent',
123 ],
124 }],
125 ], 123 ],
126 }], 124 }, {
127 ['build_libevent!=1', {
128 'sources!': [ 'task_queue_libevent.cc' ], 125 'sources!': [ 'task_queue_libevent.cc' ],
129 'conditions': [ 126 'conditions': [
130 ['OS=="linux" or OS=="android"', { 127 ['OS=="linux" or OS=="android"', {
131 'sources!': [ 'task_queue_posix.cc' ], 128 'sources!': [ 'task_queue_posix.cc' ],
132 }], 129 }],
133 ], 130 ],
134 }], 131 }],
135 ['build_libevent==1 or OS=="linux" or OS=="android" or OS=="win"', { 132 ['build_libevent==1 or OS=="linux" or OS=="android" or OS=="win"', {
136 'sources!': [ 'task_queue_gcd.cc' ], 133 'sources!': [ 'task_queue_gcd.cc' ],
137 }], 134 }],
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 }, 621 },
625 { 622 {
626 'target_name': 'gtest_prod', 623 'target_name': 'gtest_prod',
627 'type': 'static_library', 624 'type': 'static_library',
628 'sources': [ 625 'sources': [
629 'gtest_prod_util.h', 626 'gtest_prod_util.h',
630 ], 627 ],
631 }, 628 },
632 ], 629 ],
633 } 630 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698