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

Side by Side Diff: build/common.gypi

Issue 659513004: Non-SFI Mode: Build base/ library by PNaCL toolchain for nacl_helper_nonsfi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 2544 matching lines...) Expand 10 before | Expand all | Expand 10 after
2555 }], 2555 }],
2556 ['use_pango==1', { 2556 ['use_pango==1', {
2557 'defines': ['USE_PANGO=1'], 2557 'defines': ['USE_PANGO=1'],
2558 }], 2558 }],
2559 ['use_cairo==1', { 2559 ['use_cairo==1', {
2560 'defines': ['USE_CAIRO=1'], 2560 'defines': ['USE_CAIRO=1'],
2561 }], 2561 }],
2562 ['use_cras==1', { 2562 ['use_cras==1', {
2563 'defines': ['USE_CRAS=1'], 2563 'defines': ['USE_CRAS=1'],
2564 }], 2564 }],
2565 ['use_glib==1', {
2566 'defines': ['USE_GLIB=1'],
2567 }],
2568 ['use_ozone==1', { 2565 ['use_ozone==1', {
2569 'defines': ['USE_OZONE=1'], 2566 'defines': ['USE_OZONE=1'],
2570 }], 2567 }],
2571 ['use_default_render_theme==1', { 2568 ['use_default_render_theme==1', {
2572 'defines': ['USE_DEFAULT_RENDER_THEME=1'], 2569 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2573 }], 2570 }],
2574 ['use_libjpeg_turbo==1', { 2571 ['use_libjpeg_turbo==1', {
2575 'defines': ['USE_LIBJPEG_TURBO=1'], 2572 'defines': ['USE_LIBJPEG_TURBO=1'],
2576 }], 2573 }],
2577 ['use_x11==1', { 2574 ['use_x11==1', {
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
2916 }], 2913 }],
2917 ['<(use_openssl_certs)==1', { 2914 ['<(use_openssl_certs)==1', {
2918 'defines': ['USE_OPENSSL_CERTS=1'], 2915 'defines': ['USE_OPENSSL_CERTS=1'],
2919 }], 2916 }],
2920 ['>(nacl_untrusted_build)==1', { 2917 ['>(nacl_untrusted_build)==1', {
2921 'defines': [ 2918 'defines': [
2922 'USE_OPENSSL=1', 2919 'USE_OPENSSL=1',
2923 'USE_OPENSSL_CERTS=1', 2920 'USE_OPENSSL_CERTS=1',
2924 ], 2921 ],
2925 }], 2922 }],
2923 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
2924 'defines': ['USE_GLIB=1'],
2925 }],
2926 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', { 2926 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
2927 'defines': ['USE_NSS=1'], 2927 'defines': ['USE_NSS=1'],
2928 }], 2928 }],
2929 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', { 2929 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
2930 'defines': ['OS_CHROMEOS=1'], 2930 'defines': ['OS_CHROMEOS=1'],
2931 }], 2931 }],
2932 ['enable_wexit_time_destructors==1 and OS!="win"', { 2932 ['enable_wexit_time_destructors==1 and OS!="win"', {
2933 # TODO: Enable on Windows too, http://crbug.com/404525 2933 # TODO: Enable on Windows too, http://crbug.com/404525
2934 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']}, 2934 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
2935 }], 2935 }],
(...skipping 2814 matching lines...) Expand 10 before | Expand all | Expand 10 after
5750 # settings in target dicts. SYMROOT is a special case, because many other 5750 # settings in target dicts. SYMROOT is a special case, because many other
5751 # Xcode variables depend on it, including variables such as 5751 # Xcode variables depend on it, including variables such as
5752 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5752 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5753 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5753 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5754 # files to appear (when present) in the UI as actual files and not red 5754 # files to appear (when present) in the UI as actual files and not red
5755 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5755 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5756 # and therefore SYMROOT, needs to be set at the project level. 5756 # and therefore SYMROOT, needs to be set at the project level.
5757 'SYMROOT': '<(DEPTH)/xcodebuild', 5757 'SYMROOT': '<(DEPTH)/xcodebuild',
5758 }, 5758 },
5759 } 5759 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698