diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 21:11:29 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 21:11:29 +0000 |
commit | 54f8747d6057a3e794e1c24c3246c7d6c580db3f (patch) | |
tree | d72d287d49387521829c85355911eb449a9ef3b0 /content/content_app.gypi | |
parent | e44df4bd50372d562731300d039f8d22029d8548 (diff) | |
download | chromium_src-54f8747d6057a3e794e1c24c3246c7d6c580db3f.zip chromium_src-54f8747d6057a3e794e1c24c3246c7d6c580db3f.tar.gz chromium_src-54f8747d6057a3e794e1c24c3246c7d6c580db3f.tar.bz2 |
fix indentation in content_*.gypi.
This is a whitespace-only change to clean up from the refactoring of a
couple weeks ago for the component build.
R=jam@chromium.org
BUG=90442
TEST=none
Review URL: http://codereview.chromium.org/8046015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102800 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_app.gypi')
-rw-r--r-- | content/content_app.gypi | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/content/content_app.gypi b/content/content_app.gypi index 996df28..fe029a1 100644 --- a/content/content_app.gypi +++ b/content/content_app.gypi @@ -3,29 +3,28 @@ # found in the LICENSE file. { - # TODO(dpranke): Fix indentation - 'include_dirs': [ - '..', - ], + 'include_dirs': [ + '..', + ], + 'dependencies': [ + '../base/base.gyp:base', + '../base/base.gyp:base_i18n', + '../crypto/crypto.gyp:crypto', + '../ui/ui.gyp:ui', + ], + 'sources': [ + 'app/content_main.cc', + 'app/content_main.h', + 'app/content_main_delegate.cc', + 'app/content_main_delegate.h', + 'app/startup_helper_win.cc', + 'app/startup_helper_win.h', + ], + 'conditions': [ + ['OS=="win"', { 'dependencies': [ - '../base/base.gyp:base', - '../base/base.gyp:base_i18n', - '../crypto/crypto.gyp:crypto', - '../ui/ui.gyp:ui', - ], - 'sources': [ - 'app/content_main.cc', - 'app/content_main.h', - 'app/content_main_delegate.cc', - 'app/content_main_delegate.h', - 'app/startup_helper_win.cc', - 'app/startup_helper_win.h', - ], - 'conditions': [ - ['OS=="win"', { - 'dependencies': [ - '../sandbox/sandbox.gyp:sandbox', - ], - }], + '../sandbox/sandbox.gyp:sandbox', ], + }], + ], } |