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

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

Issue 1356493004: Make deps of GN groups public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/app_list/resources/BUILD.gn ('k') | ui/resources/BUILD.gn » ('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 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 ] 345 ]
346 } 346 }
347 347
348 if (is_android) { 348 if (is_android) {
349 generate_jar_jni("surface_jni_headers") { 349 generate_jar_jni("surface_jni_headers") {
350 jni_package = "ui/gl" 350 jni_package = "ui/gl"
351 classes = [ "android/view/Surface.class" ] 351 classes = [ "android/view/Surface.class" ]
352 } 352 }
353 353
354 generate_jni("gl_jni_headers") { 354 generate_jni("gl_jni_headers") {
355 deps = [
356 ":surface_jni_headers",
357 ]
358 sources = [ 355 sources = [
359 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 356 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
360 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 357 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
361 ] 358 ]
359 public_deps = [
360 ":surface_jni_headers",
361 ]
362 jni_package = "ui/gl" 362 jni_package = "ui/gl"
363 } 363 }
364 } 364 }
OLDNEW
« no previous file with comments | « ui/app_list/resources/BUILD.gn ('k') | ui/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698