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