2012-01-27 08:55:13 +04:00
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
# This gypi file defines the patterns used for determining whether a
|
|
|
|
# file is excluded from the build on a given platform. It is
|
|
|
|
# included by common.gypi for chromium_code.
|
|
|
|
|
|
|
|
{
|
2012-06-08 05:01:57 +04:00
|
|
|
'target_conditions': [
|
|
|
|
['OS!="win" or >(nacl_untrusted_build)==1', {
|
2013-06-19 07:21:15 +04:00
|
|
|
'sources/': [ ['exclude', '_win(_browsertest|_unittest)?\\.(h|cc)$'],
|
2012-01-27 08:55:13 +04:00
|
|
|
['exclude', '(^|/)win/'],
|
|
|
|
['exclude', '(^|/)win_[^/]*\\.(h|cc)$'] ],
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['OS!="mac" or >(nacl_untrusted_build)==1', {
|
2012-06-29 19:26:46 +04:00
|
|
|
'sources/': [ ['exclude', '_(cocoa|mac)(_unittest)?\\.(h|cc|mm?)$'],
|
|
|
|
['exclude', '(^|/)(cocoa|mac)/'] ],
|
|
|
|
}],
|
|
|
|
['OS!="ios" or >(nacl_untrusted_build)==1', {
|
|
|
|
'sources/': [ ['exclude', '_ios(_unittest)?\\.(h|cc|mm?)$'],
|
|
|
|
['exclude', '(^|/)ios/'] ],
|
|
|
|
}],
|
|
|
|
['(OS!="mac" and OS!="ios") or >(nacl_untrusted_build)==1', {
|
|
|
|
'sources/': [ ['exclude', '\\.mm?$' ] ],
|
2012-01-27 08:55:13 +04:00
|
|
|
}],
|
|
|
|
# Do not exclude the linux files on *BSD since most of them can be
|
|
|
|
# shared at this point.
|
|
|
|
# In case a file is not needed, it is going to be excluded later on.
|
|
|
|
# TODO(evan): the above is not correct; we shouldn't build _linux
|
|
|
|
# files on non-linux.
|
2012-06-08 05:01:57 +04:00
|
|
|
['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', {
|
2012-01-27 08:55:13 +04:00
|
|
|
'sources/': [
|
|
|
|
['exclude', '_linux(_unittest)?\\.(h|cc)$'],
|
|
|
|
['exclude', '(^|/)linux/'],
|
|
|
|
],
|
|
|
|
}],
|
2014-06-04 19:39:58 +04:00
|
|
|
['OS!="android" or _toolset=="host" or >(nacl_untrusted_build)==1', {
|
2012-01-27 08:55:13 +04:00
|
|
|
'sources/': [
|
2015-02-10 22:48:00 +03:00
|
|
|
['exclude', '_android(_unittest)?\\.(h|cc)$'],
|
2012-01-27 08:55:13 +04:00
|
|
|
['exclude', '(^|/)android/'],
|
|
|
|
],
|
|
|
|
}],
|
2012-06-12 08:02:33 +04:00
|
|
|
['OS=="win" and >(nacl_untrusted_build)==0', {
|
2012-06-04 23:33:56 +04:00
|
|
|
'sources/': [
|
|
|
|
['exclude', '_posix(_unittest)?\\.(h|cc)$'],
|
|
|
|
['exclude', '(^|/)posix/'],
|
|
|
|
],
|
2012-01-27 08:55:13 +04:00
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(chromeos)!=1 or >(nacl_untrusted_build)==1', {
|
2013-01-18 01:48:37 +04:00
|
|
|
'sources/': [
|
|
|
|
['exclude', '_chromeos(_unittest)?\\.(h|cc)$'],
|
|
|
|
['exclude', '(^|/)chromeos/'],
|
|
|
|
],
|
2012-01-27 08:55:13 +04:00
|
|
|
}],
|
2012-06-12 08:02:33 +04:00
|
|
|
['>(nacl_untrusted_build)==0', {
|
|
|
|
'sources/': [
|
|
|
|
['exclude', '_nacl(_unittest)?\\.(h|cc)$'],
|
|
|
|
],
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', {
|
2012-01-27 08:55:13 +04:00
|
|
|
'sources/': [
|
|
|
|
['exclude', '_xdg(_unittest)?\\.(h|cc)$'],
|
|
|
|
],
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(use_x11)!=1 or >(nacl_untrusted_build)==1', {
|
2012-01-27 08:55:13 +04:00
|
|
|
'sources/': [
|
2014-07-27 15:21:55 +04:00
|
|
|
['exclude', '_(x|x11)(_interactive_uitest|_unittest)?\\.(h|cc)$'],
|
2012-01-27 08:55:13 +04:00
|
|
|
['exclude', '(^|/)x11_[^/]*\\.(h|cc)$'],
|
2013-03-07 22:20:22 +04:00
|
|
|
['exclude', '(^|/)x11/'],
|
2013-10-01 05:44:56 +04:00
|
|
|
['exclude', '(^|/)x/'],
|
2012-01-27 08:55:13 +04:00
|
|
|
],
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(toolkit_views)==0 or >(nacl_untrusted_build)==1', {
|
2014-05-03 07:55:19 +04:00
|
|
|
'sources/': [ ['exclude', '_views(_browsertest|_unittest)?\\.(h|cc)$'] ]
|
2012-01-27 08:55:13 +04:00
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(use_aura)==0 or >(nacl_untrusted_build)==1', {
|
2013-06-19 07:21:15 +04:00
|
|
|
'sources/': [ ['exclude', '_aura(_browsertest|_unittest)?\\.(h|cc)$'],
|
2012-01-27 08:55:13 +04:00
|
|
|
['exclude', '(^|/)aura/'],
|
|
|
|
]
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(use_aura)==0 or <(use_x11)==0 or >(nacl_untrusted_build)==1', {
|
2013-08-23 05:12:39 +04:00
|
|
|
'sources/': [ ['exclude', '_aurax11(_browsertest|_unittest)?\\.(h|cc)$'] ]
|
2012-01-27 08:55:13 +04:00
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(use_aura)==0 or OS!="win" or >(nacl_untrusted_build)==1', {
|
2012-01-27 08:55:13 +04:00
|
|
|
'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ]
|
|
|
|
}],
|
2013-10-30 08:19:15 +04:00
|
|
|
['<(use_aura)==0 or OS!="linux" or >(nacl_untrusted_build)==1', {
|
|
|
|
'sources/': [ ['exclude', '_auralinux\\.(h|cc)$'] ]
|
|
|
|
}],
|
2012-06-08 05:01:57 +04:00
|
|
|
['<(use_ash)==0 or >(nacl_untrusted_build)==1', {
|
2012-10-23 05:08:59 +04:00
|
|
|
'sources/': [ ['exclude', '_ash(_browsertest|_unittest)?\\.(h|cc)$'],
|
2012-03-03 02:40:55 +04:00
|
|
|
['exclude', '(^|/)ash/'],
|
|
|
|
]
|
|
|
|
}],
|
[win8] Force browsers created while Chrome is in Metro mode to be on the Ash desktop.
When a user has configured Chrome to run in Metro mode, all browser
windows should open in the Ash desktop, regardless of where the request
came from. This includes browser desktop shortcuts, v1 browser-hosted
apps, OAuth windows, links from packaged apps, and DevTools windows.
Currently there are many code paths that result in a browser created in
Windows Desktop mode.
Also, if a browser is created in Ash, Metro mode does not always
activate. This may cause a user to think no window was created.
This CL adds BrowserWindow::AdjustHostDesktopType(..) to represent the
current policy decision that browser windows should only open on the Ash
desktop on Windows, when Chrome is running in Metro mode.
The policy is enforced by ensuring all constructed Browser instances are
created with a verified host desktop, which will be TYPE_ASH whenever the
ash shell is instantiated on Windows.
Then, when a browser window gains focus in the Ash desktop, if the metro
viewer process is not already the foreground window, switch to Metro
mode.
BUG=315385, 315894, 319173
TEST=Have Chrome configured in Metro mode. Then:
1. Open Chrome via the Desktop mode App Launcher.
2. Open Chrome via the context menu on the Chrome icon on the Desktop
mode App Launcher.
3. Open Chrome with a profile-badged desktop shortcut (twice).
4. (in Metro Mode) open an undocked Inspector window.
5. Open a v1 hosted app (e.g. Drive) from the Desktop mode app launcher.
6. After showing the Desktop app launcher and closing it, open a v1
hosted app desktop shortcut
===> All of these should open windows in Ash, and switch to Metro mode.
Review URL: https://codereview.chromium.org/58853004
git-svn-id: http://src.chromium.org/svn/trunk/src/build@235906 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-11-19 08:00:41 +04:00
|
|
|
['<(use_ash)==0 or OS!="win" or >(nacl_untrusted_build)==1', {
|
|
|
|
'sources/': [ ['exclude', '_ashwin\\.(h|cc)$'] ]
|
|
|
|
}],
|
2013-05-03 23:19:15 +04:00
|
|
|
['<(use_ozone)==0 or >(nacl_untrusted_build)==1', {
|
2015-06-08 23:18:08 +03:00
|
|
|
'sources/': [ ['exclude', '_ozone(_browsertest|_unittest)?\\.(h|cc)$'] ]
|
2013-10-22 03:09:48 +04:00
|
|
|
}],
|
2013-11-06 10:02:45 +04:00
|
|
|
['<(use_pango)==0', {
|
|
|
|
'sources/': [ ['exclude', '(^|_)pango(_util|_browsertest|_unittest)?\\.(h|cc)$'], ],
|
|
|
|
}],
|
2012-01-27 08:55:13 +04:00
|
|
|
]
|
|
|
|
}
|