| 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 group("third_party") { | 5 group("third_party") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":bigint", | 7 ":bigint", |
| 8 ":fx_freetype", | 8 ":fx_freetype", |
| 9 ":pdfium_base", | 9 ":pdfium_base", |
| 10 ] | 10 ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 source_set("bigint") { | 13 static_library("bigint") { |
| 14 configs -= [ "//build/config/compiler:chromium_code" ] | 14 configs -= [ "//build/config/compiler:chromium_code" ] |
| 15 configs += [ | 15 configs += [ |
| 16 "//build/config/compiler:no_chromium_code", | 16 "//build/config/compiler:no_chromium_code", |
| 17 "//third_party/pdfium:pdfium_config", | 17 "//third_party/pdfium:pdfium_config", |
| 18 ] | 18 ] |
| 19 sources = [ | 19 sources = [ |
| 20 "bigint/BigInteger.cc", | 20 "bigint/BigInteger.cc", |
| 21 "bigint/BigInteger.hh", | 21 "bigint/BigInteger.hh", |
| 22 "bigint/BigIntegerLibrary.hh", | 22 "bigint/BigIntegerLibrary.hh", |
| 23 "bigint/BigIntegerUtils.cc", | 23 "bigint/BigIntegerUtils.cc", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "base/macros.h", | 305 "base/macros.h", |
| 306 "base/nonstd_unique_ptr.h", | 306 "base/nonstd_unique_ptr.h", |
| 307 "base/numerics/safe_conversions.h", | 307 "base/numerics/safe_conversions.h", |
| 308 "base/numerics/safe_conversions_impl.h", | 308 "base/numerics/safe_conversions_impl.h", |
| 309 "base/numerics/safe_math.h", | 309 "base/numerics/safe_math.h", |
| 310 "base/numerics/safe_math_impl.h", | 310 "base/numerics/safe_math_impl.h", |
| 311 "base/stl_util.h", | 311 "base/stl_util.h", |
| 312 "base/template_util.h", | 312 "base/template_util.h", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| OLD | NEW |