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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 if (is_mac) { | 88 if (is_mac) { |
89 sources += [ | 89 sources += [ |
90 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", | 90 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", |
91 "gpu/client/gpu_memory_buffer_impl_io_surface.h", | 91 "gpu/client/gpu_memory_buffer_impl_io_surface.h", |
92 ] | 92 ] |
93 sources -= [ | 93 sources -= [ |
94 "plugin_list_posix.cc", | 94 "plugin_list_posix.cc", |
95 ] | 95 ] |
96 | 96 |
97 deps += [ | 97 deps += [ |
98 "//webkit:resources", | |
99 "//content:resources", | 98 "//content:resources", |
| 99 "//third_party/WebKit/public:resources", |
| 100 "//webkit/glue/resources", |
100 ] | 101 ] |
101 libs += [ "QuartzCore.framework" ] | 102 libs += [ "QuartzCore.framework" ] |
102 } | 103 } |
103 | 104 |
104 if (is_android) { | 105 if (is_android) { |
105 sources += [ | 106 sources += [ |
106 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", | 107 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", |
107 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", | 108 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", |
108 ] | 109 ] |
109 | 110 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 274 |
274 mojom("mojo_bindings") { | 275 mojom("mojo_bindings") { |
275 sources = [ | 276 sources = [ |
276 "render_frame_setup.mojom", | 277 "render_frame_setup.mojom", |
277 ] | 278 ] |
278 | 279 |
279 deps = [ | 280 deps = [ |
280 "//mojo/public/interfaces/application:application", | 281 "//mojo/public/interfaces/application:application", |
281 ] | 282 ] |
282 } | 283 } |
OLD | NEW |