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

Side by Side Diff: build_gyp/standalone.gypi

Issue 1904563002: Standalone GN build. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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 | « build_gyp/gyp_pdfium ('k') | build_overrides/README.md » ('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 'clang%': 0, 10 'clang%': 0,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'host_arch%': '<(host_arch)', 42 'host_arch%': '<(host_arch)',
43 'target_arch%': '<(target_arch)', 43 'target_arch%': '<(target_arch)',
44 }, 44 },
45 'clang_dir%': 'third_party/llvm-build/Release+Asserts', 45 'clang_dir%': 'third_party/llvm-build/Release+Asserts',
46 # These two are needed by V8. 46 # These two are needed by V8.
47 'host_arch%': '<(host_arch)', 47 'host_arch%': '<(host_arch)',
48 'target_arch%': '<(target_arch)', 48 'target_arch%': '<(target_arch)',
49 'werror%': '-Werror', 49 'werror%': '-Werror',
50 'v8_optimized_debug%': 0, 50 'v8_optimized_debug%': 0,
51 'v8_use_external_startup_data%': 0, 51 'v8_use_external_startup_data%': 0,
52 'icu_gyp_path': '../v8/third_party/icu/icu.gyp', 52 'icu_gyp_path': '../third_party/icu/icu.gyp',
53 'libjpeg_gyp_path': '../third_party/third_party.gyp', 53 'libjpeg_gyp_path': '../third_party/third_party.gyp',
54 'conditions': [ 54 'conditions': [
55 ['OS == "win"', { 55 ['OS == "win"', {
56 'os_posix%': 0, 56 'os_posix%': 0,
57 }, { 57 }, {
58 'os_posix%': 1, 58 'os_posix%': 1,
59 }], 59 }],
60 ['OS=="linux" or OS=="mac"', { 60 ['OS=="linux" or OS=="mac"', {
61 'clang%': 1, 61 'clang%': 1,
62 'host_clang%': 1, 62 'host_clang%': 1,
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 ], 498 ],
499 }], # OS=="win" 499 }], # OS=="win"
500 ["use_goma==1", { 500 ["use_goma==1", {
501 'make_global_settings': [ 501 'make_global_settings': [
502 ['CC_wrapper', '<(gomadir)/gomacc'], 502 ['CC_wrapper', '<(gomadir)/gomacc'],
503 ['CXX_wrapper', '<(gomadir)/gomacc'], 503 ['CXX_wrapper', '<(gomadir)/gomacc'],
504 ], 504 ],
505 }], # use_goma==1 505 }], # use_goma==1
506 ], 506 ],
507 } 507 }
OLDNEW
« no previous file with comments | « build_gyp/gyp_pdfium ('k') | build_overrides/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698