OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("pdfium.gni") | 6 import("pdfium.gni") |
7 | 7 |
8 config("pdfium_config") { | 8 config("pdfium_config") { |
9 cflags = [] | 9 cflags = [] |
10 include_dirs = [ | 10 include_dirs = [ |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 } | 158 } |
159 } | 159 } |
160 | 160 |
161 source_set("test_support") { | 161 source_set("test_support") { |
162 testonly = true | 162 testonly = true |
163 sources = [ | 163 sources = [ |
164 "testing/fx_string_testhelpers.cpp", | 164 "testing/fx_string_testhelpers.cpp", |
165 "testing/fx_string_testhelpers.h", | 165 "testing/fx_string_testhelpers.h", |
166 "testing/test_support.cpp", | 166 "testing/test_support.cpp", |
167 "testing/test_support.h", | 167 "testing/test_support.h", |
168 'testing/utils/path_service.cpp', | 168 "testing/utils/path_service.cpp", |
169 ] | 169 ] |
170 deps = [ | 170 deps = [ |
171 "//testing/gmock", | 171 "//testing/gmock", |
172 "//testing/gtest", | 172 "//testing/gtest", |
173 ":pdfium", | 173 ":pdfium", |
174 ] | 174 ] |
175 include_dirs = [] | 175 include_dirs = [] |
176 if (pdf_enable_v8) { | 176 if (pdf_enable_v8) { |
177 deps += [ | 177 deps += [ |
178 "//v8", | 178 "//v8", |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1503 "//v8", | 1503 "//v8", |
1504 "//v8:v8_libplatform", | 1504 "//v8:v8_libplatform", |
1505 ] | 1505 ] |
1506 include_dirs += [ | 1506 include_dirs += [ |
1507 "//v8", | 1507 "//v8", |
1508 "//v8/include", | 1508 "//v8/include", |
1509 ] | 1509 ] |
1510 } | 1510 } |
1511 configs += [ ":pdfium_config" ] | 1511 configs += [ ":pdfium_config" ] |
1512 } | 1512 } |
OLD | NEW |