OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 # GYP version: components/safe_json_parser.gypi:safe_json_parser | |
6 static_library("safe_json_parser") { | |
7 sources = [ | |
8 "safe_json_parser.cc", | |
9 "safe_json_parser.h", | |
10 "safe_json_parser_export.h", | |
11 "safe_json_parser_message_filter.cc", | |
12 "safe_json_parser_message_filter.h", | |
13 "safe_json_parser_messages.cc", | |
14 "safe_json_parser_messages.h", | |
15 ] | |
16 | |
Robert Sesek
2015/05/26 19:39:27
Does this need to define SAFE_JSON_PARSER_IMPLEMEN
Eran Messeri
2015/05/28 13:54:27
Yes, done. I reworked the BUILD.gn and safe_json_p
| |
17 deps = [ | |
18 "//base", | |
19 "//components/strings", | |
20 "//content/public/browser", | |
21 "//ipc", | |
22 "//ui/base", | |
23 ] | |
24 } | |
OLD | NEW |