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

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

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch 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
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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "test/gl_image_test_template.h", 295 "test/gl_image_test_template.h",
296 "test/gl_surface_test_support.cc", 296 "test/gl_surface_test_support.cc",
297 "test/gl_surface_test_support.h", 297 "test/gl_surface_test_support.h",
298 "test/gl_test_helper.cc", 298 "test/gl_test_helper.cc",
299 "test/gl_test_helper.h", 299 "test/gl_test_helper.h",
300 ] 300 ]
301 301
302 configs += [ "//third_party/khronos:khronos_headers" ] 302 configs += [ "//third_party/khronos:khronos_headers" ]
303 303
304 deps = [ 304 deps = [
305 ":gl",
305 "//testing/gtest", 306 "//testing/gtest",
306 ":gl",
307 ] 307 ]
308 308
309 if (use_x11) { 309 if (use_x11) {
310 configs += [ "//build/config/linux:x11" ] 310 configs += [ "//build/config/linux:x11" ]
311 deps += [ 311 deps += [
312 "//ui/gfx/x", 312 "//ui/gfx/x",
313 "//ui/platform_window/x11", 313 "//ui/platform_window/x11",
314 ] 314 ]
315 } 315 }
316 } 316 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 sources = [ 373 sources = [
374 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java", 374 "../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java",
375 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ", 375 "../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrapper.java ",
376 ] 376 ]
377 public_deps = [ 377 public_deps = [
378 ":surface_jni_headers", 378 ":surface_jni_headers",
379 ] 379 ]
380 jni_package = "ui/gl" 380 jni_package = "ui/gl"
381 } 381 }
382 } 382 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698