Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: build_gyp/standalone.gypi

Issue 2153113002: Remove constructor from functions that aren't constructors (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@2743
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « DEPS ('k') | xfa/fxjse/dynprop.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'chromium_code%': 0, 10 'chromium_code%': 0,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'host_arch%': '<(host_arch)', 43 'host_arch%': '<(host_arch)',
44 'target_arch%': '<(target_arch)', 44 'target_arch%': '<(target_arch)',
45 }, 45 },
46 'clang_dir%': 'third_party/llvm-build/Release+Asserts', 46 'clang_dir%': 'third_party/llvm-build/Release+Asserts',
47 # These two are needed by V8. 47 # These two are needed by V8.
48 'host_arch%': '<(host_arch)', 48 'host_arch%': '<(host_arch)',
49 'target_arch%': '<(target_arch)', 49 'target_arch%': '<(target_arch)',
50 'werror%': '-Werror', 50 'werror%': '-Werror',
51 'v8_optimized_debug%': 0, 51 'v8_optimized_debug%': 0,
52 'v8_use_external_startup_data%': 0, 52 'v8_use_external_startup_data%': 0,
53 'icu_use_data_file_flag%': 1,
53 'icu_gyp_path': '../third_party/icu/icu.gyp', 54 'icu_gyp_path': '../third_party/icu/icu.gyp',
54 'libjpeg_gyp_path': '../third_party/third_party.gyp', 55 'libjpeg_gyp_path': '../third_party/third_party.gyp',
55 'conditions': [ 56 'conditions': [
56 ['OS == "win"', { 57 ['OS == "win"', {
57 'os_posix%': 0, 58 'os_posix%': 0,
58 }, { 59 }, {
59 'os_posix%': 1, 60 'os_posix%': 1,
60 }], 61 }],
61 ['OS=="linux" or OS=="mac"', { 62 ['OS=="linux" or OS=="mac"', {
62 'clang%': 1, 63 'clang%': 1,
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 ], 531 ],
531 }], # OS=="win" 532 }], # OS=="win"
532 ["use_goma==1", { 533 ["use_goma==1", {
533 'make_global_settings': [ 534 'make_global_settings': [
534 ['CC_wrapper', '<(gomadir)/gomacc'], 535 ['CC_wrapper', '<(gomadir)/gomacc'],
535 ['CXX_wrapper', '<(gomadir)/gomacc'], 536 ['CXX_wrapper', '<(gomadir)/gomacc'],
536 ], 537 ],
537 }], # use_goma==1 538 }], # use_goma==1
538 ], 539 ],
539 } 540 }
OLDNEW
« no previous file with comments | « DEPS ('k') | xfa/fxjse/dynprop.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698