| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { | 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//content:resources", | 123 "//content:resources", |
| 124 "//third_party/WebKit/public:resources", | 124 "//third_party/WebKit/public:resources", |
| 125 ] | 125 ] |
| 126 libs += [ "QuartzCore.framework" ] | 126 libs += [ "QuartzCore.framework" ] |
| 127 } | 127 } |
| 128 | 128 |
| 129 if (is_android) { | 129 if (is_android) { |
| 130 sources += [ | 130 sources += [ |
| 131 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", | 131 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", |
| 132 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", | 132 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", |
| 133 "gpu/gpu_memory_buffer_factory_surface_texture.cc", |
| 134 "gpu/gpu_memory_buffer_factory_surface_texture.h", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 deps += [ | 137 deps += [ |
| 136 "//content/public/android:jni", | 138 "//content/public/android:jni", |
| 137 "//content/public/android:common_aidl", | 139 "//content/public/android:common_aidl", |
| 138 ] | 140 ] |
| 139 | 141 |
| 140 libs += [ "android" ] | 142 libs += [ "android" ] |
| 141 } | 143 } |
| 142 | 144 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 315 |
| 314 mojom("mojo_bindings") { | 316 mojom("mojo_bindings") { |
| 315 sources = [ | 317 sources = [ |
| 316 "render_frame_setup.mojom", | 318 "render_frame_setup.mojom", |
| 317 ] | 319 ] |
| 318 | 320 |
| 319 deps = [ | 321 deps = [ |
| 320 "//mojo/public/interfaces/application:application", | 322 "//mojo/public/interfaces/application:application", |
| 321 ] | 323 ] |
| 322 } | 324 } |
| OLD | NEW |