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

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
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': 'ui_java', 51 'target_name': 'ui_java',
44 'type': 'none', 52 'type': 'none',
45 'variables': { 53 'variables': {
46 'java_in_dir': '../../ui/android/java', 54 'java_in_dir': '../../ui/android/java',
47 'has_java_resources': 1, 55 'has_java_resources': 1,
48 'R_package': 'org.chromium.ui', 56 'R_package': 'org.chromium.ui',
49 'R_package_relpath': 'org/chromium/ui', 57 'R_package_relpath': 'org/chromium/ui',
50 }, 58 },
51 'dependencies': [ 59 'dependencies': [
52 '../../base/base.gyp:base_java', 60 '../../base/base.gyp:base_java',
53 'bitmap_format_java', 61 'bitmap_format_java',
54 'page_transition_types_java', 62 'page_transition_types_java',
55 'system_ui_resource_type_java', 63 'system_ui_resource_type_java',
64 'touch_device_types_java',
56 'ui_strings_grd', 65 'ui_strings_grd',
57 'window_open_disposition_java', 66 'window_open_disposition_java',
58 ], 67 ],
59 'includes': [ '../../build/java.gypi' ], 68 'includes': [ '../../build/java.gypi' ],
60 }, 69 },
61 { 70 {
62 'target_name': 'ui_javatests', 71 'target_name': 'ui_javatests',
63 'type': 'none', 72 'type': 'none',
64 'variables': { 73 'variables': {
65 'java_in_dir': '../../ui/android/javatests', 74 'java_in_dir': '../../ui/android/javatests',
(...skipping 11 matching lines...) Expand all
77 'type': 'none', 86 'type': 'none',
78 'variables': { 87 'variables': {
79 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', 88 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
80 }, 89 },
81 'includes': [ 90 'includes': [
82 '../../build/java_strings_grd.gypi', 91 '../../build/java_strings_grd.gypi',
83 ], 92 ],
84 }, 93 },
85 ], 94 ],
86 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698