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

Side by Side Diff: build/toolchain.gypi

Issue 392033005: Move android_webview_build variable to toolchain.gypi to fix arm builders. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « build/android.gypi ('k') | 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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 # The setting is ignored if want_separate_host_toolset is 0. 75 # The setting is ignored if want_separate_host_toolset is 0.
76 'v8_toolset_for_d8%': 'target', 76 'v8_toolset_for_d8%': 'target',
77 77
78 'host_os%': '<(OS)', 78 'host_os%': '<(OS)',
79 'werror%': '-Werror', 79 'werror%': '-Werror',
80 # For a shared library build, results in "libv8-<(soname_version).so". 80 # For a shared library build, results in "libv8-<(soname_version).so".
81 'soname_version%': '', 81 'soname_version%': '',
82 82
83 # Allow to suppress the array bounds warning (default is no suppression). 83 # Allow to suppress the array bounds warning (default is no suppression).
84 'wno_array_bounds%': '', 84 'wno_array_bounds%': '',
85
86 'variables': {
87 # This is set when building the Android WebView inside the Android build
88 # system, using the 'android' gyp backend.
89 'android_webview_build%': 0,
90 }
85 }, 91 },
86 'conditions': [ 92 'conditions': [
87 ['host_arch=="ia32" or host_arch=="x64" or clang==1', { 93 ['host_arch=="ia32" or host_arch=="x64" or clang==1', {
88 'variables': { 94 'variables': {
89 'host_cxx_is_biarch%': 1, 95 'host_cxx_is_biarch%': 1,
90 }, 96 },
91 }, { 97 }, {
92 'variables': { 98 'variables': {
93 'host_cxx_is_biarch%': 0, 99 'host_cxx_is_biarch%': 0,
94 }, 100 },
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 'OptimizeReferences': '2', 823 'OptimizeReferences': '2',
818 'EnableCOMDATFolding': '2', 824 'EnableCOMDATFolding': '2',
819 }, 825 },
820 }, 826 },
821 }], # OS=="win" 827 }], # OS=="win"
822 ], # conditions 828 ], # conditions
823 }, # Release 829 }, # Release
824 }, # configurations 830 }, # configurations
825 }, # target_defaults 831 }, # target_defaults
826 } 832 }
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698