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

Unified Diff: mandoline/services/core_services/BUILD.gn

Issue 1458193002: Flip the CrOS GN release bots to use Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix target nesting 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/proximity_auth/BUILD.gn ('k') | testing/buildbot/chromium.chromiumos.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/services/core_services/BUILD.gn
diff --git a/mandoline/services/core_services/BUILD.gn b/mandoline/services/core_services/BUILD.gn
index 642fe6d111d8b2a2ff1400559ab9f35c2a28ae5d..0f2fe0602c9f0399ff83d3d19c476d2dd84624f1 100644
--- a/mandoline/services/core_services/BUILD.gn
+++ b/mandoline/services/core_services/BUILD.gn
@@ -12,20 +12,30 @@ import("//mojo/public/mojo_application.gni")
mojo_native_application("core_services") {
deps = [
":sources",
- "//third_party/angle:libEGL",
- "//third_party/angle:libGLESv2",
]
if (is_win) {
- copy("copy_files") {
- sources = [
- "$root_shlib_dir/libEGL.dll",
- "$root_shlib_dir/libGLESv2.dll",
- ]
- outputs = [
- "$root_out_dir/core_services/{{source_file_part}}",
- ]
- }
- deps += [ ":copy_files" ]
+ deps += [
+ ":copy_files",
+ "//third_party/angle:libEGL",
+ "//third_party/angle:libGLESv2",
+ ]
+ }
+}
+
+if (is_win) {
+ copy("copy_files") {
+ sources = [
+ "$root_shlib_dir/libEGL.dll",
+ "$root_shlib_dir/libGLESv2.dll",
+ ]
+ outputs = [
+ "$root_out_dir/core_services/{{source_file_part}}",
+ ]
+
+ deps = [
+ "//third_party/angle:libEGL",
+ "//third_party/angle:libGLESv2",
+ ]
}
}
« no previous file with comments | « components/proximity_auth/BUILD.gn ('k') | testing/buildbot/chromium.chromiumos.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698