| 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/network_hints/common", | 13 "//components/network_hints/common", |
| 14 "//components/pdf/common", | |
| 15 "//components/spellcheck/common", | 14 "//components/spellcheck/common", |
| 16 "//components/tracing", | 15 "//components/tracing", |
| 17 "//content/child", | 16 "//content/child", |
| 18 "//content/public/child", | 17 "//content/public/child", |
| 19 "//ipc", | 18 "//ipc", |
| 20 "//media/cast:net", | 19 "//media/cast:net", |
| 21 "//ppapi/proxy:ipc", | 20 "//ppapi/proxy:ipc", |
| 22 "//skia", | 21 "//skia", |
| 23 "//third_party/WebKit/public:blink", | 22 "//third_party/WebKit/public:blink", |
| 24 "//third_party/WebKit/public:blink_headers", | 23 "//third_party/WebKit/public:blink_headers", |
| 25 "//third_party/mt19937ar", | 24 "//third_party/mt19937ar", |
| 26 "//third_party/webrtc_overrides", | 25 "//third_party/webrtc_overrides", |
| 27 "//ui/accessibility:ax_gen", | 26 "//ui/accessibility:ax_gen", |
| 28 ] | 27 ] |
| 29 sources = [ | 28 sources = [ |
| 30 "all_messages.h", | 29 "all_messages.h", |
| 31 "message_cracker.h", | 30 "message_cracker.h", |
| 32 "message_file.h", | 31 "message_file.h", |
| 33 "message_file_format.h", | 32 "message_file_format.h", |
| 34 "message_file_reader.cc", | 33 "message_file_reader.cc", |
| 35 "message_file_writer.cc", | 34 "message_file_writer.cc", |
| 36 "message_names.cc", | 35 "message_names.cc", |
| 37 "message_names.h", | 36 "message_names.h", |
| 38 ] | 37 ] |
| 39 | 38 |
| 40 if (enable_nacl) { | 39 if (enable_nacl) { |
| 41 public_deps += [ "//components/nacl/common" ] | 40 public_deps += [ "//components/nacl/common" ] |
| 42 } | 41 } |
| 43 } | 42 } |
| OLD | NEW |