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

Side by Side Diff: ui/touch_selection/BUILD.gn

Issue 1428173002: GN: Remove "outputs" parameter for java_cpp_enum() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 data_deps = [ 98 data_deps = [
99 "//third_party/mesa:osmesa", 99 "//third_party/mesa:osmesa",
100 ] 100 ]
101 } 101 }
102 102
103 if (is_android) { 103 if (is_android) {
104 java_cpp_enum("ui_touch_selection_enums_srcjar") { 104 java_cpp_enum("ui_touch_selection_enums_srcjar") {
105 sources = [ 105 sources = [
106 "selection_event_type.h", 106 "selection_event_type.h",
107 ] 107 ]
108 outputs = [
109 "org/chromium/ui/touch_selection/SelectionEventType.java",
110 ]
111 } 108 }
112 java_cpp_enum("ui_touch_handle_orientation_srcjar") { 109 java_cpp_enum("ui_touch_handle_orientation_srcjar") {
113 sources = [ 110 sources = [
114 "touch_handle_orientation.h", 111 "touch_handle_orientation.h",
115 ] 112 ]
116 outputs = [
117 "org/chromium/ui/touch_selection/TouchHandleOrientation.java",
118 ]
119 } 113 }
120 } 114 }
OLDNEW
« no previous file with comments | « ui/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698