diff options
author | ncbray <ncbray@chromium.org> | 2015-03-10 15:14:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-10 22:15:12 +0000 |
commit | 9099f49130311a760ce3fe88b7782a5574e6ba9d (patch) | |
tree | 5bfc4e33e30b155587305e01dcede670ed80a1fa /base/json | |
parent | 659061ebdf5119aff7c12ba135554315aae9ea79 (diff) | |
download | chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.zip chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.tar.gz chromium_src-9099f49130311a760ce3fe88b7782a5574e6ba9d.tar.bz2 |
Fix GN NaCl Debug build of base.
BUG=401761
TBR=brettw
CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg
Review URL: https://codereview.chromium.org/972203003
Cr-Commit-Position: refs/heads/master@{#319987}
Diffstat (limited to 'base/json')
-rw-r--r-- | base/json/BUILD.gn | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/base/json/BUILD.gn b/base/json/BUILD.gn new file mode 100644 index 0000000..0310ea9 --- /dev/null +++ b/base/json/BUILD.gn @@ -0,0 +1,37 @@ +# Copyright (c) 2013 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +source_set("json") { + sources = [ + "json_file_value_serializer.cc", + "json_file_value_serializer.h", + "json_parser.cc", + "json_parser.h", + "json_reader.cc", + "json_reader.h", + "json_string_value_serializer.cc", + "json_string_value_serializer.h", + "json_value_converter.cc", + "json_value_converter.h", + "json_writer.cc", + "json_writer.h", + "string_escape.cc", + "string_escape.h", + ] + + if (is_nacl) { + sources -= [ + "json_file_value_serializer.cc", + "json_file_value_serializer.h", + ] + } + + defines = [ "BASE_IMPLEMENTATION" ] + + deps = [ + "//base/memory", + ] + + visibility = [ "//base/*" ] +} |