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

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

Issue 696713002: Pointer/hover media query support: platform-dependent changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/base/TouchDevice.java ('k') | ui/base/touch/touch_device.h » ('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 {
(...skipping 14 matching lines...) Expand all
25 }, 25 },
26 { 26 {
27 'target_name': 'system_ui_resource_type_java', 27 'target_name': 'system_ui_resource_type_java',
28 'type': 'none', 28 'type': 'none',
29 'variables': { 29 'variables': {
30 'source_file': '../base/android/system_ui_resource_type.h', 30 'source_file': '../base/android/system_ui_resource_type.h',
31 }, 31 },
32 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 32 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
33 }, 33 },
34 { 34 {
35 'target_name': 'touch_device_types_java',
36 'type': 'none',
37 'variables': {
38 'source_file': '../base/touch/touch_device.h',
39 },
40 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
41 },
42 {
35 'target_name': 'window_open_disposition_java', 43 'target_name': 'window_open_disposition_java',
36 'type': 'none', 44 'type': 'none',
37 'variables': { 45 'variables': {
38 'source_file': '../base/window_open_disposition.h', 46 'source_file': '../base/window_open_disposition.h',
39 }, 47 },
40 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 48 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
41 }, 49 },
42 { 50 {
43 'target_name': 'text_input_type_java', 51 'target_name': 'text_input_type_java',
44 'type': 'none', 52 'type': 'none',
45 'variables': { 53 'variables': {
46 'source_file': '../base/ime/text_input_type.h', 54 'source_file': '../base/ime/text_input_type.h',
47 }, 55 },
48 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 56 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
49 }, 57 },
50 { 58 {
51 'target_name': 'ui_java', 59 'target_name': 'ui_java',
52 'type': 'none', 60 'type': 'none',
53 'variables': { 61 'variables': {
54 'java_in_dir': '../../ui/android/java', 62 'java_in_dir': '../../ui/android/java',
55 'has_java_resources': 1, 63 'has_java_resources': 1,
56 'R_package': 'org.chromium.ui', 64 'R_package': 'org.chromium.ui',
57 'R_package_relpath': 'org/chromium/ui', 65 'R_package_relpath': 'org/chromium/ui',
58 }, 66 },
59 'dependencies': [ 67 'dependencies': [
60 '../../base/base.gyp:base_java', 68 '../../base/base.gyp:base_java',
61 'bitmap_format_java', 69 'bitmap_format_java',
62 'page_transition_types_java', 70 'page_transition_types_java',
63 'system_ui_resource_type_java', 71 'system_ui_resource_type_java',
72 'touch_device_types_java',
64 'ui_strings_grd', 73 'ui_strings_grd',
65 'window_open_disposition_java', 74 'window_open_disposition_java',
66 'text_input_type_java', 75 'text_input_type_java',
67 ], 76 ],
68 'includes': [ '../../build/java.gypi' ], 77 'includes': [ '../../build/java.gypi' ],
69 }, 78 },
70 { 79 {
71 'target_name': 'ui_javatests', 80 'target_name': 'ui_javatests',
72 'type': 'none', 81 'type': 'none',
73 'variables': { 82 'variables': {
(...skipping 12 matching lines...) Expand all
86 'type': 'none', 95 'type': 'none',
87 'variables': { 96 'variables': {
88 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', 97 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
89 }, 98 },
90 'includes': [ 99 'includes': [
91 '../../build/java_strings_grd.gypi', 100 '../../build/java_strings_grd.gypi',
92 ], 101 ],
93 }, 102 },
94 ], 103 ],
95 } 104 }
OLDNEW
« no previous file with comments | « ui/android/java/src/org/chromium/ui/base/TouchDevice.java ('k') | ui/base/touch/touch_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698