| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 } | 185 } |
| 186 } | 186 } |
| 187 | 187 |
| 188 static_library("test_support") { | 188 static_library("test_support") { |
| 189 testonly = true | 189 testonly = true |
| 190 sources = [ | 190 sources = [ |
| 191 "testing/fx_string_testhelpers.cpp", | 191 "testing/fx_string_testhelpers.cpp", |
| 192 "testing/fx_string_testhelpers.h", | 192 "testing/fx_string_testhelpers.h", |
| 193 "testing/test_support.cpp", | 193 "testing/test_support.cpp", |
| 194 "testing/test_support.h", | 194 "testing/test_support.h", |
| 195 "testing/utils/md5.cpp", |
| 196 "testing/utils/md5.h", |
| 195 "testing/utils/path_service.cpp", | 197 "testing/utils/path_service.cpp", |
| 198 "testing/utils/path_service.h", |
| 196 ] | 199 ] |
| 197 deps = [ | 200 deps = [ |
| 198 ":pdfium", | 201 ":pdfium", |
| 199 "//testing/gmock", | 202 "//testing/gmock", |
| 200 "//testing/gtest", | 203 "//testing/gtest", |
| 201 ] | 204 ] |
| 202 include_dirs = [] | 205 include_dirs = [] |
| 203 if (pdf_enable_v8) { | 206 if (pdf_enable_v8) { |
| 204 deps += [ | 207 deps += [ |
| 205 "//v8", | 208 "//v8", |
| (...skipping 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1827 "//samples", | 1830 "//samples", |
| 1828 ] | 1831 ] |
| 1829 } | 1832 } |
| 1830 group("fuzzers") { | 1833 group("fuzzers") { |
| 1831 testonly = true | 1834 testonly = true |
| 1832 deps = [ | 1835 deps = [ |
| 1833 "//testing/libfuzzer", | 1836 "//testing/libfuzzer", |
| 1834 ] | 1837 ] |
| 1835 } | 1838 } |
| 1836 } | 1839 } |
| OLD | NEW |