| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 | 6 |
| 7 # Should be static library, see documentation on //base:base for discussion. | 7 source_set("json") { |
| 8 static_library("json") { | |
| 9 sources = [ | 8 sources = [ |
| 10 "json_file_value_serializer.cc", | 9 "json_file_value_serializer.cc", |
| 11 "json_file_value_serializer.h", | 10 "json_file_value_serializer.h", |
| 12 "json_parser.cc", | 11 "json_parser.cc", |
| 13 "json_parser.h", | 12 "json_parser.h", |
| 14 "json_reader.cc", | 13 "json_reader.cc", |
| 15 "json_reader.h", | 14 "json_reader.h", |
| 16 "json_string_value_serializer.cc", | 15 "json_string_value_serializer.cc", |
| 17 "json_string_value_serializer.h", | 16 "json_string_value_serializer.h", |
| 18 "json_value_converter.cc", | 17 "json_value_converter.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 31 } | 30 } |
| 32 | 31 |
| 33 configs += [ "//base:base_implementation" ] | 32 configs += [ "//base:base_implementation" ] |
| 34 | 33 |
| 35 deps = [ | 34 deps = [ |
| 36 "//base/memory", | 35 "//base/memory", |
| 37 ] | 36 ] |
| 38 | 37 |
| 39 visibility = [ "//base/*" ] | 38 visibility = [ "//base/*" ] |
| 40 } | 39 } |
| OLD | NEW |