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

Side by Side Diff: ui/ozone/platform/cast/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//ui/ozone/ozone.gni") 6 import("//ui/ozone/ozone.gni")
7 7
8 # GYP version: cast.gypi:ozone_platform_cast 8 # GYP version: cast.gypi:ozone_platform_cast
9 # TODO(slan): gn check needs deps on ozone and media to pass. Correct this. 9 # TODO(slan): gn check needs deps on ozone and media to pass. Correct this.
10 source_set("cast") { 10 source_set("cast") {
(...skipping 16 matching lines...) Expand all
27 27
28 # For EGL header included in surface_factory_cast.cc (needs EGL types). 28 # For EGL header included in surface_factory_cast.cc (needs EGL types).
29 configs += [ "//third_party/khronos:khronos_headers" ] 29 configs += [ "//third_party/khronos:khronos_headers" ]
30 30
31 # For loading EGL functions using dlsym in surface_factory_cast.cc because we 31 # For loading EGL functions using dlsym in surface_factory_cast.cc because we
32 # do not want to statically link against EGL library. 32 # do not want to statically link against EGL library.
33 libs = [ "dl" ] 33 libs = [ "dl" ]
34 34
35 deps = [ 35 deps = [
36 "//base", 36 "//base",
37 "//chromecast/graphics:libcast_graphics_1.0",
37 "//chromecast/media/base:message_loop", 38 "//chromecast/media/base:message_loop",
38 "//chromecast/graphics:libcast_graphics_1.0",
39 "//ui/gfx", 39 "//ui/gfx",
40 "//ui/gfx/geometry", 40 "//ui/gfx/geometry",
41 "//ui/ozone:ozone_base", 41 "//ui/ozone:ozone_base",
42 "//ui/platform_window", 42 "//ui/platform_window",
43 ] 43 ]
44 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698