| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| 9 import("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 "safe_browsing/protobuf_message_param_traits.h", | 514 "safe_browsing/protobuf_message_param_traits.h", |
| 515 "safe_browsing/protobuf_message_read_macros.h", | 515 "safe_browsing/protobuf_message_read_macros.h", |
| 516 "safe_browsing/protobuf_message_size_macros.h", | 516 "safe_browsing/protobuf_message_size_macros.h", |
| 517 "safe_browsing/protobuf_message_write_macros.h", | 517 "safe_browsing/protobuf_message_write_macros.h", |
| 518 "safe_browsing/zip_analyzer.cc", | 518 "safe_browsing/zip_analyzer.cc", |
| 519 "safe_browsing/zip_analyzer.h", | 519 "safe_browsing/zip_analyzer.h", |
| 520 "safe_browsing/zip_analyzer_results.cc", | 520 "safe_browsing/zip_analyzer_results.cc", |
| 521 "safe_browsing/zip_analyzer_results.h", | 521 "safe_browsing/zip_analyzer_results.h", |
| 522 ] | 522 ] |
| 523 | 523 |
| 524 public_deps += [ "//ipc" ] |
| 525 |
| 524 # safe_archive_analyzer.mojom has a [Native] trait that depends on | 526 # safe_archive_analyzer.mojom has a [Native] trait that depends on |
| 525 # the protobuf headers in the sources list above. | 527 # the protobuf headers in the sources list above. |
| 526 allow_circular_includes_from = [ ":mojo_bindings" ] | 528 allow_circular_includes_from = [ ":mojo_bindings" ] |
| 527 } | 529 } |
| 528 } | 530 } |
| 529 | 531 |
| 530 if (is_linux) { | 532 if (is_linux) { |
| 531 deps = [ | 533 deps = [ |
| 532 "//sandbox/linux:sandbox_services", | 534 "//sandbox/linux:sandbox_services", |
| 533 ] | 535 ] |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 mojom("instant_mojom") { | 727 mojom("instant_mojom") { |
| 726 sources = [ | 728 sources = [ |
| 727 "instant.mojom", | 729 "instant.mojom", |
| 728 ] | 730 ] |
| 729 | 731 |
| 730 public_deps = [ | 732 public_deps = [ |
| 731 "//mojo/common:common_custom_types", | 733 "//mojo/common:common_custom_types", |
| 732 "//url/mojo:url_mojom_gurl", | 734 "//url/mojo:url_mojom_gurl", |
| 733 ] | 735 ] |
| 734 } | 736 } |
| OLD | NEW |