| OLD | NEW |
| 1 # Copyright 2014 PDFium Authors. All rights reserved. | 1 # Copyright 2014 PDFium 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/config/sanitizers/sanitizers.gni") | 5 import("//build/config/sanitizers/sanitizers.gni") |
| 6 import("//build_overrides/v8.gni") | |
| 7 import("../pdfium.gni") | 6 import("../pdfium.gni") |
| 8 | 7 |
| 9 group("samples") { | 8 group("samples") { |
| 10 testonly = true | 9 testonly = true |
| 11 deps = [ | 10 deps = [ |
| 12 ":pdfium_diff", | 11 ":pdfium_diff", |
| 13 ":pdfium_test", | 12 ":pdfium_test", |
| 14 ] | 13 ] |
| 15 } | 14 } |
| 16 | 15 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ] | 79 ] |
| 81 if (!pdf_enable_xfa) { | 80 if (!pdf_enable_xfa) { |
| 82 deps += [ "../third_party:fx_lpng" ] | 81 deps += [ "../third_party:fx_lpng" ] |
| 83 } | 82 } |
| 84 configs -= [ "//build/config/compiler:chromium_code" ] | 83 configs -= [ "//build/config/compiler:chromium_code" ] |
| 85 configs += [ | 84 configs += [ |
| 86 ":pdfium_samples_config", | 85 ":pdfium_samples_config", |
| 87 "//build/config/compiler:no_chromium_code", | 86 "//build/config/compiler:no_chromium_code", |
| 88 ] | 87 ] |
| 89 } | 88 } |
| OLD | NEW |