diff options
author | yoz <yoz@chromium.org> | 2014-12-19 12:58:18 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-19 20:59:22 +0000 |
commit | 289ee7c3b41766e6996b6a7d6ecd5a574b2a147e (patch) | |
tree | 410510e9e2b211f6f98119af8ce12ef751dba93d /build/all.gyp | |
parent | 9f60ea8024d81d8b1cfc9a88f465c41e853a0ef3 (diff) | |
download | chromium_src-289ee7c3b41766e6996b6a7d6ecd5a574b2a147e.zip chromium_src-289ee7c3b41766e6996b6a7d6ecd5a574b2a147e.tar.gz chromium_src-289ee7c3b41766e6996b6a7d6ecd5a574b2a147e.tar.bz2 |
AppShell support for Mac.
Very basic support for app_shell on Mac cocoa. It allows building and running app_shell, app_shell_unittests, and app_shell_browsertests on Mac. It introduces app_shell_framework and app_shell_helper targets. Much of the work is based on the content_shell equivalents.
The above targets build as part of 'all' on Mac, but are not yet covered by trybots.
Shortcomings compared to Aura:
- The AppShell desktop controller doesn't support tracking multiple app windows.
- Running App Shell --load-apps works (at least for the Calculator sample) but can only be exited via ^C at the command line, and there is no Mac menu.
BUG=399363
Review URL: https://codereview.chromium.org/745093002
Cr-Commit-Position: refs/heads/master@{#309256}
Diffstat (limited to 'build/all.gyp')
-rw-r--r-- | build/all.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/all.gyp b/build/all.gyp index 9316b49..1b3b9a9 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -272,7 +272,7 @@ '../google_apis/gcm/gcm.gyp:*', ], }], - ['chromeos==1 or OS=="linux" or OS=="win"', { + ['chromeos==1 or OS=="linux" or OS=="win" or OS=="mac"', { 'dependencies': [ '../extensions/shell/app_shell.gyp:*', ], |