OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 10 matching lines...) Expand all Loading... | |
21 'sources': [ | 21 'sources': [ |
22 'java/PageTransitionTypes.template', | 22 'java/PageTransitionTypes.template', |
23 ], | 23 ], |
24 'variables': { | 24 'variables': { |
25 'package_name': 'org/chromium/ui/base', | 25 'package_name': 'org/chromium/ui/base', |
26 'template_deps': ['../base/page_transition_types_list.h'], | 26 'template_deps': ['../base/page_transition_types_list.h'], |
27 }, | 27 }, |
28 'includes': [ '../../build/android/java_cpp_template.gypi' ], | 28 'includes': [ '../../build/android/java_cpp_template.gypi' ], |
29 }, | 29 }, |
30 { | 30 { |
31 'target_name': 'page_info_connection_type_java', | |
cjhopman
2014/09/25 21:17:52
This (and the dependency below) will have to be ad
sashab
2014/09/29 04:17:12
This is actually a duplicate definition of the tar
| |
32 'type': 'none', | |
33 'variables': { | |
34 'source_file': '../../chrome/browser/ui/android/website_settings_popup_a ndroid.h', | |
35 }, | |
36 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | |
37 }, | |
38 { | |
31 'target_name': 'window_open_disposition_java', | 39 'target_name': 'window_open_disposition_java', |
32 'type': 'none', | 40 'type': 'none', |
33 'variables': { | 41 'variables': { |
34 'source_file': '../base/window_open_disposition.h', | 42 'source_file': '../base/window_open_disposition.h', |
35 }, | 43 }, |
36 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 44 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
37 }, | 45 }, |
38 { | 46 { |
39 'target_name': 'ui_java', | 47 'target_name': 'ui_java', |
40 'type': 'none', | 48 'type': 'none', |
41 'variables': { | 49 'variables': { |
42 'java_in_dir': '../../ui/android/java', | 50 'java_in_dir': '../../ui/android/java', |
43 'has_java_resources': 1, | 51 'has_java_resources': 1, |
44 'R_package': 'org.chromium.ui', | 52 'R_package': 'org.chromium.ui', |
45 'R_package_relpath': 'org/chromium/ui', | 53 'R_package_relpath': 'org/chromium/ui', |
46 }, | 54 }, |
47 'dependencies': [ | 55 'dependencies': [ |
48 '../../base/base.gyp:base_java', | 56 '../../base/base.gyp:base_java', |
49 'bitmap_format_java', | 57 'bitmap_format_java', |
58 'page_info_connection_type_java', | |
50 'page_transition_types_java', | 59 'page_transition_types_java', |
51 'ui_strings_grd', | 60 'ui_strings_grd', |
52 'window_open_disposition_java', | 61 'window_open_disposition_java', |
53 ], | 62 ], |
54 'includes': [ '../../build/java.gypi' ], | 63 'includes': [ '../../build/java.gypi' ], |
55 }, | 64 }, |
56 { | 65 { |
57 'target_name': 'ui_strings_grd', | 66 'target_name': 'ui_strings_grd', |
58 # The android_webview/Android.mk file depends on this target directly. | 67 # The android_webview/Android.mk file depends on this target directly. |
59 'android_unmangled_name': 1, | 68 'android_unmangled_name': 1, |
60 'type': 'none', | 69 'type': 'none', |
61 'variables': { | 70 'variables': { |
62 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', | 71 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', |
63 }, | 72 }, |
64 'includes': [ | 73 'includes': [ |
65 '../../build/java_strings_grd.gypi', | 74 '../../build/java_strings_grd.gypi', |
66 ], | 75 ], |
67 }, | 76 }, |
68 ], | 77 ], |
69 } | 78 } |
OLD | NEW |