Index: gpu/command_buffer/service/BUILD.gn |
diff --git a/gpu/command_buffer/service/BUILD.gn b/gpu/command_buffer/service/BUILD.gn |
index 351e5c9f1a3e4389738749200da82de10fe2a381..c9e6e3cc4cf5b3c42f5cf252452f3bf49d645052 100644 |
--- a/gpu/command_buffer/service/BUILD.gn |
+++ b/gpu/command_buffer/service/BUILD.gn |
@@ -121,9 +121,7 @@ source_set("service") { |
defines = [ "GPU_IMPLEMENTATION" ] |
- configs += [ |
- "//third_party/khronos:khronos_headers", |
- ] |
+ configs += [ "//third_party/khronos:khronos_headers" ] |
# Prefer mesa GL headers to system headers, which cause problems on Win. |
include_dirs = [ "//third_party/mesa/src/include" ] |
@@ -149,7 +147,7 @@ source_set("service") { |
include_dirs += [ "//third_party/khronos" ] |
} |
- if (is_win || is_android || (is_linux && use_x11)) { |
+ if (is_win || is_android || is_linux && use_x11) { |
sources += [ |
"async_pixel_transfer_manager_egl.cc", |
"async_pixel_transfer_manager_egl.h", |
@@ -164,5 +162,7 @@ source_set("service") { |
} |
proto_library("disk_cache_proto") { |
- sources = [ "disk_cache_proto.proto" ] |
+ sources = [ |
+ "disk_cache_proto.proto", |
+ ] |
} |