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

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

Issue 1418653002: Synchronize GN build configuration with Chrome (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Review feedback addressed Created 5 years, 2 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
« no previous file with comments | « ui/gfx/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 if (is_android) { 6 if (is_android) {
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 ] 286 ]
287 } 287 }
288 288
289 if (is_android) { 289 if (is_android) {
290 generate_jar_jni("surface_jni_headers") { 290 generate_jar_jni("surface_jni_headers") {
291 jni_package = "ui/gl" 291 jni_package = "ui/gl"
292 classes = [ "android/view/Surface.class" ] 292 classes = [ "android/view/Surface.class" ]
293 } 293 }
294 294
295 generate_jni("gl_jni_headers") { 295 generate_jni("gl_jni_headers") {
296 deps = [
297 ":surface_jni_headers",
298 ]
299 sources = [ 296 sources = [
300 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 297 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
301 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 298 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
302 ] 299 ]
300 public_deps = [
301 ":surface_jni_headers",
302 ]
303 jni_package = "ui/gl" 303 jni_package = "ui/gl"
304 } 304 }
305 } 305 }
OLDNEW
« no previous file with comments | « ui/gfx/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698