| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 # GYP version: components/safe_json.gypi:safe_json | 9 # GYP version: components/safe_json.gypi:safe_json |
| 10 source_set("safe_json") { | 10 source_set("safe_json") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//ipc", | 44 "//ipc", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 | 48 |
| 49 # GYP version: components/safe_json.gypi:safe_json_unittest_sources | 49 # GYP version: components/safe_json.gypi:safe_json_unittest_sources |
| 50 source_set("unit_tests") { | 50 source_set("unit_tests") { |
| 51 testonly = true | 51 testonly = true |
| 52 sources = [ | 52 sources = [ |
| 53 "json_sanitizer_unittest.cc", | 53 "json_sanitizer_unittest.cc", |
| 54 "testing_json_parser_unittest.cc", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 deps = [ | 57 deps = [ |
| 57 ":safe_json", | 58 ":safe_json", |
| 58 ":test_support", | 59 ":test_support", |
| 59 "//base", | 60 "//base", |
| 60 "//testing/gtest", | 61 "//testing/gtest", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 | 64 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ] | 99 ] |
| 99 | 100 |
| 100 deps = [ | 101 deps = [ |
| 101 ":messages", | 102 ":messages", |
| 102 "//base", | 103 "//base", |
| 103 "//content/public/common", | 104 "//content/public/common", |
| 104 "//content/public/utility", | 105 "//content/public/utility", |
| 105 "//ipc", | 106 "//ipc", |
| 106 ] | 107 ] |
| 107 } | 108 } |
| OLD | NEW |