| 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 source_set("common") { | 10 source_set("common") { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 ] | 99 ] |
| 100 libs += [ "QuartzCore.framework" ] | 100 libs += [ "QuartzCore.framework" ] |
| 101 } | 101 } |
| 102 | 102 |
| 103 if (is_android) { | 103 if (is_android) { |
| 104 sources += [ | 104 sources += [ |
| 105 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", | 105 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", |
| 106 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", | 106 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", |
| 107 ] | 107 ] |
| 108 | 108 |
| 109 # TODO(GYP) enable when these targets are converted. | 109 deps += [ |
| 110 #deps += [ | 110 "//content/public/android:jni", |
| 111 # "//content:content_jni_headers", | 111 "//content/public/android:common_aidl", |
| 112 # "//content:common_aidl", | 112 ] |
| 113 #] | |
| 114 | 113 |
| 115 libs += [ "android" ] | 114 libs += [ "android" ] |
| 116 } | 115 } |
| 117 | 116 |
| 118 if (is_ios) { | 117 if (is_ios) { |
| 119 sources -= [ "user_agent.cc" ] | 118 sources -= [ "user_agent.cc" ] |
| 120 assert(false, "Need to add lots of conditions here") | 119 assert(false, "Need to add lots of conditions here") |
| 121 } | 120 } |
| 122 | 121 |
| 123 if (!use_ozone) { | 122 if (!use_ozone) { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 279 |
| 281 mojom("mojo_bindings") { | 280 mojom("mojo_bindings") { |
| 282 sources = [ | 281 sources = [ |
| 283 "render_frame_setup.mojom", | 282 "render_frame_setup.mojom", |
| 284 ] | 283 ] |
| 285 | 284 |
| 286 deps = [ | 285 deps = [ |
| 287 "//mojo/public/interfaces/application:application", | 286 "//mojo/public/interfaces/application:application", |
| 288 ] | 287 ] |
| 289 } | 288 } |
| OLD | NEW |