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

Side by Side Diff: ui/android/ui_android.gyp

Issue 679493002: [Android] Add a native pull-to-refresh overscroll effect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix findbugs... Created 6 years, 1 month 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
« no previous file with comments | « ui/android/java/src/org/chromium/ui/gfx/BitmapHelper.java ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
11 'target_name': 'bitmap_format_java', 11 'target_name': 'bitmap_format_java',
12 'type': 'none', 12 'type': 'none',
13 'variables': { 13 'variables': {
14 'source_file': '../gfx/android/java_bitmap.h', 14 'source_file': '../gfx/android/java_bitmap.h',
15 }, 15 },
16 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 16 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
17 }, 17 },
18 { 18 {
19 'target_name': 'page_transition_types_java', 19 'target_name': 'page_transition_types_java',
20 'type': 'none', 20 'type': 'none',
21 'variables': { 21 'variables': {
22 'source_file': '../base/page_transition_types.h', 22 'source_file': '../base/page_transition_types.h',
23 }, 23 },
24 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 24 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
25 }, 25 },
26 { 26 {
27 'target_name': 'system_ui_resource_type_java',
28 'type': 'none',
29 'variables': {
30 'source_file': '../base/android/system_ui_resource_type.h',
31 },
32 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
33 },
34 {
27 'target_name': 'window_open_disposition_java', 35 'target_name': 'window_open_disposition_java',
28 'type': 'none', 36 'type': 'none',
29 'variables': { 37 'variables': {
30 'source_file': '../base/window_open_disposition.h', 38 'source_file': '../base/window_open_disposition.h',
31 }, 39 },
32 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 40 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
33 }, 41 },
34 { 42 {
35 'target_name': 'ui_java', 43 'target_name': 'ui_java',
36 'type': 'none', 44 'type': 'none',
37 'variables': { 45 'variables': {
38 'java_in_dir': '../../ui/android/java', 46 'java_in_dir': '../../ui/android/java',
39 'has_java_resources': 1, 47 'has_java_resources': 1,
40 'R_package': 'org.chromium.ui', 48 'R_package': 'org.chromium.ui',
41 'R_package_relpath': 'org/chromium/ui', 49 'R_package_relpath': 'org/chromium/ui',
42 }, 50 },
43 'dependencies': [ 51 'dependencies': [
44 '../../base/base.gyp:base_java', 52 '../../base/base.gyp:base_java',
45 'bitmap_format_java', 53 'bitmap_format_java',
46 'page_transition_types_java', 54 'page_transition_types_java',
55 'system_ui_resource_type_java',
47 'ui_strings_grd', 56 'ui_strings_grd',
48 'window_open_disposition_java', 57 'window_open_disposition_java',
49 ], 58 ],
50 'includes': [ '../../build/java.gypi' ], 59 'includes': [ '../../build/java.gypi' ],
51 }, 60 },
52 { 61 {
53 'target_name': 'ui_strings_grd', 62 'target_name': 'ui_strings_grd',
54 # The android_webview/Android.mk file depends on this target directly. 63 # The android_webview/Android.mk file depends on this target directly.
55 'android_unmangled_name': 1, 64 'android_unmangled_name': 1,
56 'type': 'none', 65 'type': 'none',
57 'variables': { 66 'variables': {
58 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', 67 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
59 }, 68 },
60 'includes': [ 69 'includes': [
61 '../../build/java_strings_grd.gypi', 70 '../../build/java_strings_grd.gypi',
62 ], 71 ],
63 }, 72 },
64 ], 73 ],
65 } 74 }
OLDNEW
« no previous file with comments | « ui/android/java/src/org/chromium/ui/gfx/BitmapHelper.java ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698