1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'ashmem',
'conditions': [
['android_webview_build==1', {
# WebView must use the Android system version of ashmem to avoid
# linking problems.
'type': 'none',
'variables': {
'headers_root_path': '.',
'header_filenames': [ 'ashmem.h' ],
'shim_generator_additional_args': [
'--prefix', 'cutils/',
],
},
'includes': [
'../../build/shim_headers.gypi',
],
}, {
'type': 'static_library',
'sources': [
'ashmem.h',
'ashmem-dev.c'
],
}],
],
},
],
}
|