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 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //components/safe_json_parser |
| 9 'target_name': 'safe_json_parser', |
| 10 #'type': '<(component)', |
| 11 'type': 'static_library', |
| 12 'dependencies': [ |
| 13 '../base/base.gyp:base', |
| 14 '../content/content.gyp:content_browser', |
| 15 '../ipc/ipc.gyp:ipc', |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '..', |
| 19 ], |
| 20 'sources': [ |
| 21 'safe_json_parser/safe_json_parser.cc', |
| 22 'safe_json_parser/safe_json_parser.h', |
| 23 'safe_json_parser/safe_json_parser_messages.cc', |
| 24 'safe_json_parser/safe_json_parser_messages.h', |
| 25 'safe_json_parser/safe_json_parser_message_filter.cc', |
| 26 'safe_json_parser/safe_json_parser_message_filter.h', |
| 27 ], |
| 28 }, |
| 29 ], |
| 30 } |
OLD | NEW |