| OLD | NEW |
| 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("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 import("//ui/ozone/ozone.gni") | 10 import("//ui/ozone/ozone.gni") |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 | 60 |
| 61 executable("cast_shell") { | 61 executable("cast_shell") { |
| 62 sources = [ | 62 sources = [ |
| 63 "app/cast_main.cc", | 63 "app/cast_main.cc", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 deps = [ | 66 deps = [ |
| 67 ":cast_shell_common", | 67 ":cast_shell_common", |
| 68 ":cast_shell_media", | 68 ":cast_shell_media", |
| 69 "//build/config/sanitizers:deps", |
| 69 "//chromecast/app", | 70 "//chromecast/app", |
| 70 "//content/public/app:both", | 71 "//content/public/app:both", |
| 71 ] | 72 ] |
| 72 | 73 |
| 73 if (ozone_platform_egltest) { | 74 if (ozone_platform_egltest) { |
| 74 deps += [ "//ui/ozone/platform/egltest:eglplatform_shim_x11" ] | 75 deps += [ "//ui/ozone/platform/egltest:eglplatform_shim_x11" ] |
| 75 } | 76 } |
| 76 } | 77 } |
| 77 | 78 |
| 78 repack("cast_shell_pak") { | 79 repack("cast_shell_pak") { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 109 "//ui/resources", | 110 "//ui/resources", |
| 110 "//ui/strings", | 111 "//ui/strings", |
| 111 ] | 112 ] |
| 112 | 113 |
| 113 if (chromecast_branding != "public" && use_chromecast_webui) { | 114 if (chromecast_branding != "public" && use_chromecast_webui) { |
| 114 deps += [ | 115 deps += [ |
| 115 # TODO(slan): Update these paths to be accurate for internal builds. | 116 # TODO(slan): Update these paths to be accurate for internal builds. |
| 116 ] | 117 ] |
| 117 } | 118 } |
| 118 } | 119 } |
| OLD | NEW |