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