| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 6 |
| 7 static_library("ipc_message_lib") { | 7 static_library("ipc_message_lib") { |
| 8 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_tool_config" ] | 8 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_tool_config" ] |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 "//base", | 10 "//base", |
| 11 "//chrome/common", | 11 "//chrome/common", |
| 12 "//chrome/common/safe_browsing:proto", | 12 "//chrome/common/safe_browsing:proto", |
| 13 "//components/content_settings/content/common", | |
| 14 "//components/network_hints/common", | 13 "//components/network_hints/common", |
| 15 "//components/pdf/common", | 14 "//components/pdf/common", |
| 16 "//components/spellcheck/common", | 15 "//components/spellcheck/common", |
| 17 "//components/tracing", | 16 "//components/tracing", |
| 18 "//content/child", | 17 "//content/child", |
| 19 "//content/public/child", | 18 "//content/public/child", |
| 20 "//ipc", | 19 "//ipc", |
| 21 "//media/cast:net", | 20 "//media/cast:net", |
| 22 "//ppapi/proxy:ipc", | 21 "//ppapi/proxy:ipc", |
| 23 "//skia", | 22 "//skia", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 35 "message_file_reader.cc", | 34 "message_file_reader.cc", |
| 36 "message_file_writer.cc", | 35 "message_file_writer.cc", |
| 37 "message_names.cc", | 36 "message_names.cc", |
| 38 "message_names.h", | 37 "message_names.h", |
| 39 ] | 38 ] |
| 40 | 39 |
| 41 if (enable_nacl) { | 40 if (enable_nacl) { |
| 42 public_deps += [ "//components/nacl/common" ] | 41 public_deps += [ "//components/nacl/common" ] |
| 43 } | 42 } |
| 44 } | 43 } |
| OLD | NEW |