diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-11 00:06:18 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-11 00:06:18 +0000 |
commit | 46c80dce6ea8ed3eaabef34a4b7b7bd564eb24be (patch) | |
tree | 47203b7e2a0305503b673b9312233dc116a4db6e /athena/main/athena_main.gyp | |
parent | 8a33b058eaca9592fd6fb06f5e55c1734069463b (diff) | |
download | chromium_src-46c80dce6ea8ed3eaabef34a4b7b7bd564eb24be.zip chromium_src-46c80dce6ea8ed3eaabef34a4b7b7bd564eb24be.tar.gz chromium_src-46c80dce6ea8ed3eaabef34a4b7b7bd564eb24be.tar.bz2 |
Minimal athena shell main
BUG=362288
Review URL: https://codereview.chromium.org/270763002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269643 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'athena/main/athena_main.gyp')
-rw-r--r-- | athena/main/athena_main.gyp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/athena/main/athena_main.gyp b/athena/main/athena_main.gyp new file mode 100644 index 0000000..366e6bc --- /dev/null +++ b/athena/main/athena_main.gyp @@ -0,0 +1,24 @@ +# Copyright 2014 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. + +{ + 'variables': { + 'chromium_code': 1, + }, + 'targets': [ + { + 'target_name': 'athena_main', + 'type': 'executable', + 'dependencies': [ + '../../apps/shell/app_shell.gyp:app_shell_lib', + ], + 'include_dirs': [ + '../..', + ], + 'sources': [ + 'athena_main.cc', + ], + }, + ], # targets +} |