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

Side by Side Diff: third_party/ashmem/ashmem.gyp

Issue 14753011: Android WebView: tidy up library dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « build/android/cpufeatures.gypi ('k') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ashmem', 8 'target_name': 'ashmem',
9 'conditions': [ 9 'conditions': [
10 ['android_webview_build==1', { 10 ['android_webview_build==1', {
11 # WebView must use the Android system version of ashmem to avoid 11 # WebView must use the Android system version of ashmem to avoid
12 # linking problems. 12 # linking problems.
13 'type': 'none', 13 'type': 'none',
14 'variables': { 14 'variables': {
15 'headers_root_path': '.', 15 'headers_root_path': '.',
16 'header_filenames': [ 'ashmem.h' ], 16 'header_filenames': [ 'ashmem.h' ],
17 'shim_generator_additional_args': [ 17 'shim_generator_additional_args': [
18 '--prefix', 'cutils/', 18 '--prefix', 'cutils/',
19 ], 19 ],
20 }, 20 },
21 'includes': [ 21 'includes': [
22 '../../build/shim_headers.gypi', 22 '../../build/shim_headers.gypi',
23 ], 23 ],
24 'link_settings': {
25 'libraries': [
26 '-lcutils',
27 ],
28 },
24 }, { 29 }, {
25 'type': 'static_library', 30 'type': 'static_library',
26 'sources': [ 31 'sources': [
27 'ashmem.h', 32 'ashmem.h',
28 'ashmem-dev.c' 33 'ashmem-dev.c'
29 ], 34 ],
30 }], 35 }],
31 ], 36 ],
32 }, 37 },
33 ], 38 ],
34 } 39 }
OLDNEW
« no previous file with comments | « build/android/cpufeatures.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698