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

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

Issue 1263323004: Add NativePixmapHandle type & interface for exporting them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecesary #include and DCHECK msgs Created 5 years, 4 months 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 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/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 "image/image_util_ios.mm", 135 "image/image_util_ios.mm",
136 "interpolated_transform.cc", 136 "interpolated_transform.cc",
137 "interpolated_transform.h", 137 "interpolated_transform.h",
138 "linux_font_delegate.cc", 138 "linux_font_delegate.cc",
139 "linux_font_delegate.h", 139 "linux_font_delegate.h",
140 "mac/coordinate_conversion.h", 140 "mac/coordinate_conversion.h",
141 "mac/coordinate_conversion.mm", 141 "mac/coordinate_conversion.mm",
142 "mac/nswindow_frame_controls.h", 142 "mac/nswindow_frame_controls.h",
143 "mac/nswindow_frame_controls.mm", 143 "mac/nswindow_frame_controls.mm",
144 "mac/scoped_cocoa_disable_screen_updates.h", 144 "mac/scoped_cocoa_disable_screen_updates.h",
145 "native_pixmap_handle_ozone.h",
sadrul 2015/08/06 15:32:05 Should be in 'if (use_ozone)' block?
spang 2015/08/06 20:53:29 Yeah oops. I keep forgetting it's not automatic in
145 "native_widget_types.h", 146 "native_widget_types.h",
146 "nine_image_painter.cc", 147 "nine_image_painter.cc",
147 "nine_image_painter.h", 148 "nine_image_painter.h",
148 "paint_throbber.cc", 149 "paint_throbber.cc",
149 "paint_throbber.h", 150 "paint_throbber.h",
150 "path.cc", 151 "path.cc",
151 "path.h", 152 "path.h",
152 "path_win.cc", 153 "path_win.cc",
153 "path_win.h", 154 "path_win.h",
154 "path_x11.cc", 155 "path_x11.cc",
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 if (is_android) { 620 if (is_android) {
620 generate_jni("gfx_jni_headers") { 621 generate_jni("gfx_jni_headers") {
621 sources = [ 622 sources = [
622 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 623 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
623 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 624 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
624 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 625 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
625 ] 626 ]
626 jni_package = "gfx" 627 jni_package = "gfx"
627 } 628 }
628 } 629 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698