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

Side by Side Diff: build/common.gypi

Issue 608032: media: remove redundant gyp excludes (Closed)
Patch Set: move linux Created 10 years, 10 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
« no previous file with comments | « no previous file | media/media.gyp » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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': { 9 'variables': {
10 # .gyp files or targets should set chromium_code to 1 if they build 10 # .gyp files or targets should set chromium_code to 1 if they build
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 ['exclude', '/win/'], 458 ['exclude', '/win/'],
459 ['exclude', '/win_[^/]*\\.cc$'] ], 459 ['exclude', '/win_[^/]*\\.cc$'] ],
460 }], 460 }],
461 ['OS!="mac"', { 461 ['OS!="mac"', {
462 'sources/': [ ['exclude', '_(cocoa|mac)(_unittest)?\\.cc$'], 462 'sources/': [ ['exclude', '_(cocoa|mac)(_unittest)?\\.cc$'],
463 ['exclude', '/(cocoa|mac)/'], 463 ['exclude', '/(cocoa|mac)/'],
464 ['exclude', '\.mm?$' ] ], 464 ['exclude', '\.mm?$' ] ],
465 }], 465 }],
466 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { 466 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', {
467 'sources/': [ 467 'sources/': [
468 ['exclude', '_(chromeos|gtk|linux|x|x11)(_unittest)?\\.cc$'], 468 ['exclude', '_(chromeos|gtk|x|x11)(_unittest)?\\.cc$'],
469 ['exclude', '/gtk/'], 469 ['exclude', '/gtk/'],
470 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'] ], 470 ['exclude', '/(gtk|x11)_[^/]*\\.cc$'],
471 ],
472 }],
473 ['OS!="linux"', {
fbarchard 2010/02/17 18:12:49 for freebsd, openbsd, and solaris, is it your inte
474 'sources/': [
475 ['exclude', '_linux(_unittest)?\\.cc$'],
476 ['exclude', '/linux/'],
477 ],
471 }], 478 }],
472 # We use "POSIX" to refer to all non-Windows operating systems. 479 # We use "POSIX" to refer to all non-Windows operating systems.
473 ['OS=="win"', { 480 ['OS=="win"', {
474 'sources/': [ ['exclude', '_posix\\.cc$'] ], 481 'sources/': [ ['exclude', '_posix\\.cc$'] ],
475 }], 482 }],
476 # Though Skia is conceptually shared by Linux and Windows, 483 # Though Skia is conceptually shared by Linux and Windows,
477 # the only _skia files in our tree are Linux-specific. 484 # the only _skia files in our tree are Linux-specific.
478 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { 485 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', {
479 'sources/': [ ['exclude', '_skia\\.cc$'] ], 486 'sources/': [ ['exclude', '_skia\\.cc$'] ],
480 }], 487 }],
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1214 # and therefore SYMROOT, needs to be set at the project level. 1221 # and therefore SYMROOT, needs to be set at the project level.
1215 'SYMROOT': '<(DEPTH)/xcodebuild', 1222 'SYMROOT': '<(DEPTH)/xcodebuild',
1216 }, 1223 },
1217 } 1224 }
1218 1225
1219 # Local Variables: 1226 # Local Variables:
1220 # tab-width:2 1227 # tab-width:2
1221 # indent-tabs-mode:nil 1228 # indent-tabs-mode:nil
1222 # End: 1229 # End:
1223 # vim: set expandtab tabstop=2 shiftwidth=2: 1230 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698