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

Side by Side Diff: build/filename_rules.gypi

Issue 10512010: Tighten up DEPS some more. NaCl/service process code are including internal content files. Fix the … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix win build by beefing up filename_rules.gypi Created 8 years, 6 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 | « base/posix/unix_domain_socket.cc ('k') | chrome/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 24 matching lines...) Expand all
35 ['exclude', '(^|/)linuxish/'], 35 ['exclude', '(^|/)linuxish/'],
36 ], 36 ],
37 }], 37 }],
38 ['OS!="android"', { 38 ['OS!="android"', {
39 'sources/': [ 39 'sources/': [
40 ['exclude', '_android(_unittest)?\\.cc$'], 40 ['exclude', '_android(_unittest)?\\.cc$'],
41 ['exclude', '(^|/)android/'], 41 ['exclude', '(^|/)android/'],
42 ], 42 ],
43 }], 43 }],
44 ['OS=="win"', { 44 ['OS=="win"', {
45 'sources/': [ ['exclude', '_posix(_unittest)?\\.(h|cc)$'] ], 45 'sources/': [
46 ['exclude', '_posix(_unittest)?\\.(h|cc)$'],
47 ['exclude', '(^|/)posix/'],
48 ],
49
46 }], 50 }],
47 ['chromeos!=1', { 51 ['chromeos!=1', {
48 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] 52 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ]
49 }], 53 }],
50 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', { 54 ['OS!="linux" and OS!="openbsd" and OS!="freebsd"', {
51 'sources/': [ 55 'sources/': [
52 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], 56 ['exclude', '_xdg(_unittest)?\\.(h|cc)$'],
53 ], 57 ],
54 }], 58 }],
55 59
(...skipping 25 matching lines...) Expand all
81 ['use_aura==0 or OS!="win"', { 85 ['use_aura==0 or OS!="win"', {
82 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] 86 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ]
83 }], 87 }],
84 ['use_ash==0', { 88 ['use_ash==0', {
85 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'], 89 'sources/': [ ['exclude', '_ash(_unittest)?\\.(h|cc)$'],
86 ['exclude', '(^|/)ash/'], 90 ['exclude', '(^|/)ash/'],
87 ] 91 ]
88 }], 92 }],
89 ] 93 ]
90 } 94 }
OLDNEW
« no previous file with comments | « base/posix/unix_domain_socket.cc ('k') | chrome/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698