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

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 2539 matching lines...) Expand 10 before | Expand all | Expand 10 after
2550 }], 2550 }],
2551 ['use_pango==1', { 2551 ['use_pango==1', {
2552 'defines': ['USE_PANGO=1'], 2552 'defines': ['USE_PANGO=1'],
2553 }], 2553 }],
2554 ['use_cairo==1', { 2554 ['use_cairo==1', {
2555 'defines': ['USE_CAIRO=1'], 2555 'defines': ['USE_CAIRO=1'],
2556 }], 2556 }],
2557 ['use_cras==1', { 2557 ['use_cras==1', {
2558 'defines': ['USE_CRAS=1'], 2558 'defines': ['USE_CRAS=1'],
2559 }], 2559 }],
2560 ['use_glib==1', {
2561 'defines': ['USE_GLIB=1'],
2562 }],
2563 ['use_ozone==1', { 2560 ['use_ozone==1', {
2564 'defines': ['USE_OZONE=1'], 2561 'defines': ['USE_OZONE=1'],
2565 }], 2562 }],
2566 ['use_default_render_theme==1', { 2563 ['use_default_render_theme==1', {
2567 'defines': ['USE_DEFAULT_RENDER_THEME=1'], 2564 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2568 }], 2565 }],
2569 ['use_libjpeg_turbo==1', { 2566 ['use_libjpeg_turbo==1', {
2570 'defines': ['USE_LIBJPEG_TURBO=1'], 2567 'defines': ['USE_LIBJPEG_TURBO=1'],
2571 }], 2568 }],
2572 ['use_x11==1', { 2569 ['use_x11==1', {
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
2911 }], 2908 }],
2912 ['<(use_openssl_certs)==1', { 2909 ['<(use_openssl_certs)==1', {
2913 'defines': ['USE_OPENSSL_CERTS=1'], 2910 'defines': ['USE_OPENSSL_CERTS=1'],
2914 }], 2911 }],
2915 ['>(nacl_untrusted_build)==1', { 2912 ['>(nacl_untrusted_build)==1', {
2916 'defines': [ 2913 'defines': [
2917 'USE_OPENSSL=1', 2914 'USE_OPENSSL=1',
2918 'USE_OPENSSL_CERTS=1', 2915 'USE_OPENSSL_CERTS=1',
2919 ], 2916 ],
2920 }], 2917 }],
2918 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
2919 'defines': ['USE_GLIB=1'],
2920 }],
2921 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', { 2921 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
2922 'defines': ['USE_NSS=1'], 2922 'defines': ['USE_NSS=1'],
2923 }], 2923 }],
2924 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', { 2924 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
2925 'defines': ['OS_CHROMEOS=1'], 2925 'defines': ['OS_CHROMEOS=1'],
2926 }], 2926 }],
2927 ['enable_wexit_time_destructors==1 and OS!="win"', { 2927 ['enable_wexit_time_destructors==1 and OS!="win"', {
2928 # TODO: Enable on Windows too, http://crbug.com/404525 2928 # TODO: Enable on Windows too, http://crbug.com/404525
2929 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']}, 2929 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
2930 }], 2930 }],
(...skipping 2798 matching lines...) Expand 10 before | Expand all | Expand 10 after
5729 # settings in target dicts. SYMROOT is a special case, because many other 5729 # settings in target dicts. SYMROOT is a special case, because many other
5730 # Xcode variables depend on it, including variables such as 5730 # Xcode variables depend on it, including variables such as
5731 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5731 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5732 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5732 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5733 # files to appear (when present) in the UI as actual files and not red 5733 # files to appear (when present) in the UI as actual files and not red
5734 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5734 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5735 # and therefore SYMROOT, needs to be set at the project level. 5735 # and therefore SYMROOT, needs to be set at the project level.
5736 'SYMROOT': '<(DEPTH)/xcodebuild', 5736 'SYMROOT': '<(DEPTH)/xcodebuild',
5737 }, 5737 },
5738 } 5738 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698