-
Notifications
You must be signed in to change notification settings - Fork 160
/
chromeview.gyp
38 lines (38 loc) · 915 Bytes
/
chromeview.gyp
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
35
36
37
38
# Copyright (c) 2014 mogoweb. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
# A hook that can be overridden in other repositories to add additional
# compilation targets to 'All'
'android_app_targets%': [],
'chromium_code': 1,
},
'targets': [
{
'target_name': 'All',
'type': 'none',
'dependencies': [
'libchromeview',
],
},
{
'target_name': 'libchromeview',
'type': 'shared_library',
'android_unmangled_name': 1,
'dependencies': [
'../android_webview/android_webview.gyp:android_webview_common',
],
'sources': [
'native/jni_entry_point.cpp',
'native/draw_gl_functor.cpp',
],
'include_dirs': [
'./native',
],
'cflags!': [
'-Werror',
],
},
],
}