Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / safe_json / BUILD.gn
blob2748f60c43d89eb1ad06e0e651028eafd37f0281
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.
5 if (is_android) {
6   import("//build/config/android/rules.gni")
9 # GYP version: components/safe_json.gypi:safe_json
10 source_set("safe_json") {
11   sources = [
12     "android/component_jni_registrar.cc",
13     "android/component_jni_registrar.h",
14     "json_sanitizer.cc",
15     "json_sanitizer.h",
16     "json_sanitizer_android.cc",
17     "safe_json_parser.cc",
18     "safe_json_parser.h",
19     "safe_json_parser_android.cc",
20     "safe_json_parser_android.h",
21     "safe_json_parser_impl.cc",
22     "safe_json_parser_impl.h",
23   ]
25   deps = [
26     ":safe_json_parser_message_filter",
27     "//base",
28     "//components/strings",
29     "//content/public/browser",
30     "//ui/base",
31   ]
33   if (is_android) {
34     sources -= [
35       "json_sanitizer.cc",
36       "safe_json_parser_impl.cc",
37       "safe_json_parser_impl.h",
38     ]
39     deps += [ "android:safe_json_jni_headers" ]
40   }
43 # GYP version: components/safe_json.gypi:safe_json_unittest_sources
44 source_set("unit_tests") {
45   testonly = true
46   sources = [
47     "json_sanitizer_unittest.cc",
48   ]
50   deps = [
51     ":safe_json",
52     ":test_support",
53     "//base",
54     "//testing/gtest",
55   ]
58 # GYP version: components/safe_json.gypi:safe_json_test_support
59 source_set("test_support") {
60   testonly = true
61   sources = [
62     "testing_json_parser.cc",
63     "testing_json_parser.h",
64   ]
66   deps = [
67     ":safe_json",
68     "//base",
69   ]
72 # GYP version: components/safe_json.gypi:safe_json_parser_message_filter
73 source_set("safe_json_parser_message_filter") {
74   sources = [
75     "safe_json_parser_message_filter.cc",
76     "safe_json_parser_message_filter.h",
77     "safe_json_parser_messages.cc",
78     "safe_json_parser_messages.h",
79   ]
81   deps = [
82     "//base",
83     "//content/public/common",
84     "//content/public/utility",
85     "//ipc",
86   ]