| 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_config") { | 9 config("pdfium_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 if (is_clang) { | 584 if (is_clang) { |
| 585 cflags = [ | 585 cflags = [ |
| 586 # http://code.google.com/p/pdfium/issues/detail?id=188 | 586 # http://code.google.com/p/pdfium/issues/detail?id=188 |
| 587 "-Wno-switch", | 587 "-Wno-switch", |
| 588 ] | 588 ] |
| 589 } | 589 } |
| 590 } | 590 } |
| 591 | 591 |
| 592 static_library("fxcrt") { | 592 static_library("fxcrt") { |
| 593 sources = [ | 593 sources = [ |
| 594 "core/fxcrt/cfx_string_c_template.h", |
| 594 "core/fxcrt/cfx_string_data_template.h", | 595 "core/fxcrt/cfx_string_data_template.h", |
| 595 "core/fxcrt/extension.h", | 596 "core/fxcrt/extension.h", |
| 596 "core/fxcrt/fx_basic_array.cpp", | 597 "core/fxcrt/fx_basic_array.cpp", |
| 597 "core/fxcrt/fx_basic_bstring.cpp", | 598 "core/fxcrt/fx_basic_bstring.cpp", |
| 598 "core/fxcrt/fx_basic_buffer.cpp", | 599 "core/fxcrt/fx_basic_buffer.cpp", |
| 599 "core/fxcrt/fx_basic_coords.cpp", | 600 "core/fxcrt/fx_basic_coords.cpp", |
| 600 "core/fxcrt/fx_basic_gcc.cpp", | 601 "core/fxcrt/fx_basic_gcc.cpp", |
| 601 "core/fxcrt/fx_basic_list.cpp", | 602 "core/fxcrt/fx_basic_list.cpp", |
| 602 "core/fxcrt/fx_basic_memmgr.cpp", | 603 "core/fxcrt/fx_basic_memmgr.cpp", |
| 603 "core/fxcrt/fx_basic_plex.cpp", | 604 "core/fxcrt/fx_basic_plex.cpp", |
| (...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1693 } | 1694 } |
| 1694 | 1695 |
| 1695 if (pdf_is_standalone) { | 1696 if (pdf_is_standalone) { |
| 1696 source_set("samples") { | 1697 source_set("samples") { |
| 1697 testonly = true | 1698 testonly = true |
| 1698 deps = [ | 1699 deps = [ |
| 1699 "//samples", | 1700 "//samples", |
| 1700 ] | 1701 ] |
| 1701 } | 1702 } |
| 1702 } | 1703 } |
| OLD | NEW |