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

Side by Side Diff: build/common.gypi

Issue 7828084: Refactor ScopedJavaRef (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: operator= docs Created 9 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 | Annotate | Revision Log
« base/android/jni_array.cc ('K') | « base/base.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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 ['exclude', '(^|/)wayland/'], 1041 ['exclude', '(^|/)wayland/'],
1042 ['exclude', '(^|/)(wayland)_[^/]*\\.(h|cc)$'], 1042 ['exclude', '(^|/)(wayland)_[^/]*\\.(h|cc)$'],
1043 ], 1043 ],
1044 }], 1044 }],
1045 ['OS!="linux"', { 1045 ['OS!="linux"', {
1046 'sources/': [ 1046 'sources/': [
1047 ['exclude', '_linux(_unittest)?\\.(h|cc)$'], 1047 ['exclude', '_linux(_unittest)?\\.(h|cc)$'],
1048 ['exclude', '(^|/)linux/'], 1048 ['exclude', '(^|/)linux/'],
1049 ], 1049 ],
1050 }], 1050 }],
1051 ['OS!="android"', {
1052 'sources/': [
1053 ['exclude', '_android(_unittest)?\\.cc$'],
1054 ['exclude', '(^|/)android/'],
1055 ],
1056 }],
1051 # We use "POSIX" to refer to all non-Windows operating systems. 1057 # We use "POSIX" to refer to all non-Windows operating systems.
1052 ['OS=="win"', { 1058 ['OS=="win"', {
1053 'sources/': [ ['exclude', '_posix\\.(h|cc)$'] ], 1059 'sources/': [ ['exclude', '_posix\\.(h|cc)$'] ],
1054 # turn on warnings for signed/unsigned mismatch on chromium code. 1060 # turn on warnings for signed/unsigned mismatch on chromium code.
1055 'msvs_settings': { 1061 'msvs_settings': {
1056 'VCCLCompilerTool': { 1062 'VCCLCompilerTool': {
1057 'AdditionalOptions': ['/we4389'], 1063 'AdditionalOptions': ['/we4389'],
1058 }, 1064 },
1059 }, 1065 },
1060 }], 1066 }],
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
2022 # settings in target dicts. SYMROOT is a special case, because many other 2028 # settings in target dicts. SYMROOT is a special case, because many other
2023 # Xcode variables depend on it, including variables such as 2029 # Xcode variables depend on it, including variables such as
2024 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2030 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2025 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2031 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2026 # files to appear (when present) in the UI as actual files and not red 2032 # files to appear (when present) in the UI as actual files and not red
2027 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2033 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2028 # and therefore SYMROOT, needs to be set at the project level. 2034 # and therefore SYMROOT, needs to be set at the project level.
2029 'SYMROOT': '<(DEPTH)/xcodebuild', 2035 'SYMROOT': '<(DEPTH)/xcodebuild',
2030 }, 2036 },
2031 } 2037 }
OLDNEW
« base/android/jni_array.cc ('K') | « base/base.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698