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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 if (is_chromeos && cpu_arch != "arm") { | 10 if (is_chromeos && cpu_arch != "arm") { |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 | 281 |
282 if (cpu_arch != "arm" || !is_chromeos) { | 282 if (cpu_arch != "arm" || !is_chromeos) { |
283 sources += [ | 283 sources += [ |
284 "gpu/x_util.cc", | 284 "gpu/x_util.cc", |
285 "gpu/x_util.h", | 285 "gpu/x_util.h", |
286 ] | 286 ] |
287 } | 287 } |
288 } | 288 } |
289 | 289 |
290 if (enable_plugins) { | 290 if (enable_plugins) { |
291 deps += [ "//ppapi:ppapi_shared" ] | 291 deps += [ "//ppapi/shared_impl" ] |
292 } else { | 292 } else { |
293 sources -= [ | 293 sources -= [ |
294 "pepper_file_util.cc", | 294 "pepper_file_util.cc", |
295 "pepper_file_util.h", | 295 "pepper_file_util.h", |
296 "pepper_messages.h", | 296 "pepper_messages.h", |
297 "pepper_plugin_list.cc", | 297 "pepper_plugin_list.cc", |
298 "pepper_plugin_list.h", | 298 "pepper_plugin_list.h", |
299 "pepper_renderer_instance_data.cc", | 299 "pepper_renderer_instance_data.cc", |
300 "pepper_renderer_instance_data.h", | 300 "pepper_renderer_instance_data.h", |
301 "plugin_list.cc", | 301 "plugin_list.cc", |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 "permission_service.mojom", | 462 "permission_service.mojom", |
463 "presentation/presentation_service.mojom", | 463 "presentation/presentation_service.mojom", |
464 "render_frame_setup.mojom", | 464 "render_frame_setup.mojom", |
465 ] | 465 ] |
466 | 466 |
467 deps = [ | 467 deps = [ |
468 "//content/public/common:mojo_bindings", | 468 "//content/public/common:mojo_bindings", |
469 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 469 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
470 ] | 470 ] |
471 } | 471 } |
OLD | NEW |