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

Side by Side Diff: build_gyp/standalone.gypi

Issue 2283923002: build_gyp: Remove deprecated flag, which is enabled by default. (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | no next file » | 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 # no need to load it dynamically. 94 # no need to load it dynamically.
95 'clang_dynlib_flags%': '', 95 'clang_dynlib_flags%': '',
96 }], 96 }],
97 ['OS=="android" or OS=="linux"', { 97 ['OS=="android" or OS=="linux"', {
98 'clang_plugin_check_ipc_arg': '-Xclang -plugin-arg-find-bad-constr ucts -Xclang check-ipc', 98 'clang_plugin_check_ipc_arg': '-Xclang -plugin-arg-find-bad-constr ucts -Xclang check-ipc',
99 }, { 99 }, {
100 'clang_plugin_check_ipc_arg': '', 100 'clang_plugin_check_ipc_arg': '',
101 }], 101 }],
102 ], 102 ],
103 'clang_plugin_args%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-templates ' 103 'clang_plugin_args%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-templates '
104 '-Xclang -plugin-arg-find-bad-constructs -Xclang follow-macro-expansio n ' 104 '-Xclang -plugin-arg-find-bad-constructs -Xclang follow-macro-expansio n ',
105 '-Xclang -plugin-arg-find-bad-constructs -Xclang check-implicit-copy-c tors ',
106 }, 105 },
107 'clang_chrome_plugins_flags%': 106 'clang_chrome_plugins_flags%':
108 '<(clang_dynlib_flags)' 107 '<(clang_dynlib_flags)'
109 '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args) <(clang_plugin_check_ipc_arg)', 108 '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args) <(clang_plugin_check_ipc_arg)',
110 }], 109 }],
111 ], 110 ],
112 }, 111 },
113 'target_defaults': { 112 'target_defaults': {
114 'default_configuration': 'Debug', 113 'default_configuration': 'Debug',
115 'configurations': { 114 'configurations': {
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 ], 582 ],
584 }], # OS=="win" 583 }], # OS=="win"
585 ["use_goma==1", { 584 ["use_goma==1", {
586 'make_global_settings': [ 585 'make_global_settings': [
587 ['CC_wrapper', '<(gomadir)/gomacc'], 586 ['CC_wrapper', '<(gomadir)/gomacc'],
588 ['CXX_wrapper', '<(gomadir)/gomacc'], 587 ['CXX_wrapper', '<(gomadir)/gomacc'],
589 ], 588 ],
590 }], # use_goma==1 589 }], # use_goma==1
591 ], 590 ],
592 } 591 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698