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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 2013 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.
{
'variables': {
'chromium_code': 1,
},
'targets': [
{
'target_name': 'bitmap_format_java',
'type': 'none',
'variables': {
'source_file': '../gfx/android/java_bitmap.h',
},
'includes': [ '../../build/android/java_cpp_enum.gypi' ],
},
{
'target_name': 'page_transition_types_java',
'type': 'none',
'sources': [
'java/PageTransitionTypes.template',
],
'variables': {
'package_name': 'org/chromium/ui/base',
'template_deps': ['../base/page_transition_types_list.h'],
},
'includes': [ '../../build/android/java_cpp_template.gypi' ],
},
{
'target_name': 'window_open_disposition_java',
'type': 'none',
'variables': {
'source_file': '../base/window_open_disposition.h',
},
'includes': [ '../../build/android/java_cpp_enum.gypi' ],
},
{
'target_name': 'ui_java',
'type': 'none',
'variables': {
'java_in_dir': '../../ui/android/java',
'has_java_resources': 1,
'R_package': 'org.chromium.ui',
'R_package_relpath': 'org/chromium/ui',
},
'dependencies': [
'../../base/base.gyp:base_java',
'bitmap_format_java',
'page_transition_types_java',
'ui_strings_grd',
'window_open_disposition_java',
],
'includes': [ '../../build/java.gypi' ],
},
{
'target_name': 'ui_strings_grd',
# The android_webview/Android.mk file depends on this target directly.
'android_unmangled_name': 1,
'type': 'none',
'variables': {
'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
},
'includes': [
'../../build/java_strings_grd.gypi',
],
},
],
}
|