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