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 && current_cpu != "arm") { | 10 if (is_chromeos && current_cpu != "arm") { |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 "sandbox_linux/sandbox_bpf_base_policy_linux.h", | 465 "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
466 ] | 466 ] |
467 } | 467 } |
468 if (is_android) { | 468 if (is_android) { |
469 sources -= [ | 469 sources -= [ |
470 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", | 470 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
471 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", | 471 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
472 ] | 472 ] |
473 } | 473 } |
474 } | 474 } |
475 | |
476 if (is_win && current_cpu == "x64") { | |
477 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. | |
478 cflags = [ "/bigobj" ] | |
479 } | |
480 } | 475 } |
481 | 476 |
482 mojom("mojo_bindings") { | 477 mojom("mojo_bindings") { |
483 sources = [ | 478 sources = [ |
484 "application_setup.mojom", | 479 "application_setup.mojom", |
485 "background_sync_service.mojom", | 480 "background_sync_service.mojom", |
486 "geolocation_service.mojom", | 481 "geolocation_service.mojom", |
487 "permission_service.mojom", | 482 "permission_service.mojom", |
488 "presentation/presentation_service.mojom", | 483 "presentation/presentation_service.mojom", |
489 "process_control.mojom", | 484 "process_control.mojom", |
490 "render_frame_setup.mojom", | 485 "render_frame_setup.mojom", |
491 ] | 486 ] |
492 | 487 |
493 import_dirs = [ "//mojo/services" ] | 488 import_dirs = [ "//mojo/services" ] |
494 | 489 |
495 deps = [ | 490 deps = [ |
496 "//content/public/common:mojo_bindings", | 491 "//content/public/common:mojo_bindings", |
497 "//mojo/application/public/interfaces", | 492 "//mojo/application/public/interfaces", |
498 ] | 493 ] |
499 } | 494 } |
OLD | NEW |