diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-16 15:35:20 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-16 15:35:20 -0400 |
commit | a03c343b47938fcb1b562741ff05252b01a4e39d (patch) | |
tree | 8f4ea4f27285a6b3e1838685c1a7116d006ce1ee /skia/skia.gyp | |
parent | 30410cecd0f2653556094a20c2564170be127127 (diff) | |
download | pdfium-a03c343b47938fcb1b562741ff05252b01a4e39d.tar.xz |
Enable building pdf_use_skia in the standalone build.
This CL adds the necessary pieces so you can add pdf_use_skia=1 to GYP_DEFINES
and do a standalone build.
R=caryclark@google.com
Review URL: https://codereview.chromium.org/1812563002 .
Diffstat (limited to 'skia/skia.gyp')
-rw-r--r-- | skia/skia.gyp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/skia/skia.gyp b/skia/skia.gyp new file mode 100644 index 0000000000..29f5464938 --- /dev/null +++ b/skia/skia.gyp @@ -0,0 +1,71 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'conditions': [ + # In component mode (shared_lib), we build all of skia as a single DLL. + # However, in the static mode, we need to build skia as multiple targets + # in order to support the use case where a platform (e.g. Android) may + # already have a copy of skia as a system library. + ['component=="static_library"', { + 'targets': [ + { + 'target_name': 'skia_library', + 'type': 'static_library', + # The optimize: 'max' scattered throughout are particularly + # important when compiled by MSVC 2013, which seems + # to mis-link-time-compile code that's built with + # different optimization levels. http://crbug.com/543583 + 'variables': { + 'optimize': 'max', + }, + 'includes': [ + 'skia_common.gypi', + 'skia_library.gypi', + ], + }, + ], + }], + ['component=="static_library"', { + 'targets': [ + { + 'target_name': 'skia', + # The optimize: 'max' scattered throughout are particularly + # important when compiled by MSVC 2013, which seems + # to mis-link-time-compile code that's built with + # different optimization levels. http://crbug.com/543583 + 'variables': { + 'optimize': 'max', + }, + 'type': 'none', + 'dependencies': [ + 'skia_library', + 'skia_pdfium', + ], + 'export_dependent_settings': [ + 'skia_library', + 'skia_pdfium', + ], + 'direct_dependent_settings': { + 'conditions': [ + [ 'OS == "win"', { + 'defines': [ + 'GR_GL_FUNCTION_TYPE=__stdcall', + ], + }], + ], + }, + }, + { + 'target_name': 'skia_pdfium', + 'type': 'static_library', + 'includes': [ + 'skia_pdfium.gypi', + 'skia_common.gypi', + ], + }, + ], + }], + ], +} |