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

Side by Side Diff: build/filename_rules.gypi

Issue 9960072: Upstream crash changes for android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixes to gyp and a typo in breakpad_linuxish.cc Created 8 years, 8 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 | « breakpad/breakpad.gyp ('k') | chrome/app/DEPS » ('j') | 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) 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 # This gypi file defines the patterns used for determining whether a 5 # This gypi file defines the patterns used for determining whether a
6 # file is excluded from the build on a given platform. It is 6 # file is excluded from the build on a given platform. It is
7 # included by common.gypi for chromium_code. 7 # included by common.gypi for chromium_code.
8 8
9 { 9 {
10 'conditions': [ 10 'conditions': [
(...skipping 11 matching lines...) Expand all
22 # shared at this point. 22 # shared at this point.
23 # In case a file is not needed, it is going to be excluded later on. 23 # In case a file is not needed, it is going to be excluded later on.
24 # TODO(evan): the above is not correct; we shouldn't build _linux 24 # TODO(evan): the above is not correct; we shouldn't build _linux
25 # files on non-linux. 25 # files on non-linux.
26 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', { 26 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', {
27 'sources/': [ 27 'sources/': [
28 ['exclude', '_linux(_unittest)?\\.(h|cc)$'], 28 ['exclude', '_linux(_unittest)?\\.(h|cc)$'],
29 ['exclude', '(^|/)linux/'], 29 ['exclude', '(^|/)linux/'],
30 ], 30 ],
31 }], 31 }],
32 ['OS!="android" and OS!="linux" and OS!="openbsd" and OS!="freebsd"', {
33 'sources/': [
34 ['exclude', '_linuxish(_unittest)?\\.(h|cc)$'],
35 ['exclude', '(^|/)linuxish/'],
36 ],
37 }],
32 ['OS!="android"', { 38 ['OS!="android"', {
33 'sources/': [ 39 'sources/': [
34 ['exclude', '_android(_unittest)?\\.cc$'], 40 ['exclude', '_android(_unittest)?\\.cc$'],
35 ['exclude', '(^|/)android/'], 41 ['exclude', '(^|/)android/'],
36 ], 42 ],
37 }], 43 }],
38 ['OS=="win"', { 44 ['OS=="win"', {
39 'sources/': [ ['exclude', '_posix(_unittest)?\\.(h|cc)$'] ], 45 'sources/': [ ['exclude', '_posix(_unittest)?\\.(h|cc)$'] ],
40 }], 46 }],
41 ['chromeos!=1', { 47 ['chromeos!=1', {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 ['use_aura==0 or OS!="win"', { 81 ['use_aura==0 or OS!="win"', {
76 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] 82 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ]
77 }], 83 }],
78 ['use_ash==0', { 84 ['use_ash==0', {
79 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'], 85 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'],
80 ['exclude', '(^|/)ash/'], 86 ['exclude', '(^|/)ash/'],
81 ] 87 ]
82 }], 88 }],
83 ] 89 ]
84 } 90 }
OLDNEW
« no previous file with comments | « breakpad/breakpad.gyp ('k') | chrome/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698