OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("ipc_message_lib") { |
| 6 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_tool_config" ] |
| 7 public_deps = [ |
| 8 "//base", |
| 9 "//chrome/common", |
| 10 "//chrome/common/safe_browsing:proto", |
| 11 "//components/content_settings/content/common", |
| 12 "//components/nacl/common", |
| 13 "//components/network_hints/common", |
| 14 "//components/pdf/common", |
| 15 "//content/child", |
| 16 "//content/public/child", |
| 17 "//ipc", |
| 18 "//media/cast:net", |
| 19 "//ppapi/proxy:ipc", |
| 20 "//skia", |
| 21 "//third_party/WebKit/public:blink", |
| 22 "//third_party/WebKit/public:blink_headers", |
| 23 "//third_party/libjingle", |
| 24 "//third_party/mt19937ar", |
| 25 "//ui/accessibility:ax_gen", |
| 26 ] |
| 27 sources = [ |
| 28 "all_messages.h", |
| 29 "message_cracker.h", |
| 30 "message_file.h", |
| 31 "message_file_format.h", |
| 32 "message_file_reader.cc", |
| 33 "message_file_writer.cc", |
| 34 "message_names.cc", |
| 35 "message_names.h", |
| 36 ] |
| 37 } |
OLD | NEW |