Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'aura', | 11 'target_name': 'aura', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
| 15 '../base/base.gyp:base_i18n', | 15 '<(DEPTH)/base/base.gyp:base_i18n', |
| 16 '../skia/skia.gyp:skia', | 16 '<(DEPTH)/skia/skia.gyp:skia', |
| 17 '../ui/gfx/compositor/compositor.gyp:compositor', | 17 '<(DEPTH)/ui/gfx/compositor/compositor.gyp:compositor', |
| 18 '../ui/ui.gyp:gfx_resources', | 18 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
| 19 '../ui/ui.gyp:ui', | 19 '<(DEPTH)/ui/ui.gyp:ui', |
| 20 '../ui/ui.gyp:ui_resources', | 20 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 21 ], | 21 ], |
| 22 'defines': [ | 22 'defines': [ |
| 23 'AURA_IMPLEMENTATION', | 23 'AURA_IMPLEMENTATION', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'desktop_host.h', | 26 'desktop_host.h', |
| 27 'desktop_host_linux.cc', | 27 'desktop_host_linux.cc', |
| 28 'desktop_host_win.cc', | 28 'desktop_host_win.cc', |
| 29 'desktop_host_win.h', | 29 'desktop_host_win.h', |
| 30 'desktop.cc', | 30 'desktop.cc', |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 42 'window.h', | 42 'window.h', |
| 43 'window_delegate.h', | 43 'window_delegate.h', |
| 44 'window_manager.cc', | 44 'window_manager.cc', |
| 45 'window_manager.h', | 45 'window_manager.h', |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 { | 48 { |
| 49 'target_name': 'aura_demo', | 49 'target_name': 'aura_demo', |
| 50 'type': 'executable', | 50 'type': 'executable', |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 '../base/base.gyp:base', | 52 '<(DEPTH)/base/base.gyp:base', |
|
sky
2011/09/14 21:04:45
Mark says avoid DEPTH like the plague.
| |
| 53 '../base/base.gyp:base_i18n', | 53 '<(DEPTH)/base/base.gyp:base_i18n', |
| 54 '../skia/skia.gyp:skia', | 54 '<(DEPTH)/skia/skia.gyp:skia', |
| 55 '../third_party/icu/icu.gyp:icui18n', | 55 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 56 '../third_party/icu/icu.gyp:icuuc', | 56 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 57 '../ui/gfx/compositor/compositor.gyp:compositor', | 57 '<(DEPTH)/ui/gfx/compositor/compositor.gyp:compositor', |
| 58 '../ui/ui.gyp:gfx_resources', | 58 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
| 59 '../ui/ui.gyp:ui', | 59 '<(DEPTH)/ui/ui.gyp:ui', |
| 60 '../ui/ui.gyp:ui_resources', | 60 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 61 'aura', | 61 'aura', |
| 62 ], | 62 ], |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 '..', | 64 '..', |
| 65 ], | 65 ], |
| 66 'sources': [ | 66 'sources': [ |
| 67 'demo/demo_main.cc', | 67 'demo/demo_main.cc', |
| 68 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 68 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 69 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 69 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 70 ], | 70 ], |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 89 'window_unittest.cc', | 89 'window_unittest.cc', |
| 90 'run_all_unittests.cc', | 90 'run_all_unittests.cc', |
| 91 'test_suite.cc', | 91 'test_suite.cc', |
| 92 'test_suite.h', | 92 'test_suite.h', |
| 93 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 93 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 94 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 94 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 95 ], | 95 ], |
| 96 }, | 96 }, |
| 97 ], | 97 ], |
| 98 } | 98 } |
| OLD | NEW |