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

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

Issue 2273623002: Migrated GN target :g711_test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@real_master
Patch Set: Added the linker log Android dependency to rtc_base_approved in Gyp. Created 4 years, 4 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/modules/audio_coding/BUILD.gn » ('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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ['OS=="mac" and build_with_chromium==0', { 122 ['OS=="mac" and build_with_chromium==0', {
123 'all_dependent_settings': { 123 'all_dependent_settings': {
124 'xcode_settings': { 124 'xcode_settings': {
125 'OTHER_LDFLAGS': [ 125 'OTHER_LDFLAGS': [
126 # needed for logging_mac.mm 126 # needed for logging_mac.mm
127 '-framework Foundation', 127 '-framework Foundation',
128 ], 128 ],
129 }, 129 },
130 }, 130 },
131 }], # OS=="mac" and build_with_chromium==0 131 }], # OS=="mac" and build_with_chromium==0
132 ['OS=="android"', {
133 'link_settings': {
134 'libraries': [
135 '-llog',
136 ],
137 },
138 }],
132 ], 139 ],
133 }, 140 },
134 { 141 {
135 'target_name': 'rtc_task_queue', 142 'target_name': 'rtc_task_queue',
136 'type': 'static_library', 143 'type': 'static_library',
137 'dependencies': [ 144 'dependencies': [
138 'rtc_base_approved', 145 'rtc_base_approved',
139 ], 146 ],
140 'sources': [ 147 'sources': [
141 'sequenced_task_checker.h', 148 'sequenced_task_checker.h',
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 }, 659 },
653 { 660 {
654 'target_name': 'gtest_prod', 661 'target_name': 'gtest_prod',
655 'type': 'static_library', 662 'type': 'static_library',
656 'sources': [ 663 'sources': [
657 'gtest_prod_util.h', 664 'gtest_prod_util.h',
658 ], 665 ],
659 }, 666 },
660 ], 667 ],
661 } 668 }
OLDNEW
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698