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 } |
475 } | 480 } |
476 | 481 |
477 mojom("mojo_bindings") { | 482 mojom("mojo_bindings") { |
478 sources = [ | 483 sources = [ |
479 "application_setup.mojom", | 484 "application_setup.mojom", |
480 "background_sync_service.mojom", | 485 "background_sync_service.mojom", |
481 "geolocation_service.mojom", | 486 "geolocation_service.mojom", |
482 "permission_service.mojom", | 487 "permission_service.mojom", |
483 "presentation/presentation_service.mojom", | 488 "presentation/presentation_service.mojom", |
484 "process_control.mojom", | 489 "process_control.mojom", |
485 "render_frame_setup.mojom", | 490 "render_frame_setup.mojom", |
486 ] | 491 ] |
487 | 492 |
488 import_dirs = [ "//mojo/services" ] | 493 import_dirs = [ "//mojo/services" ] |
489 | 494 |
490 deps = [ | 495 deps = [ |
491 "//content/public/common:mojo_bindings", | 496 "//content/public/common:mojo_bindings", |
492 "//mojo/application/public/interfaces", | 497 "//mojo/application/public/interfaces", |
493 ] | 498 ] |
494 } | 499 } |
OLD | NEW |