| 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",
|
| + ]
|
| }
|
| }
|
|
|
|
|