| 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 { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 { | 82 { |
| 83 'target_name': 'aura_demo', | 83 'target_name': 'aura_demo', |
| 84 'type': 'executable', | 84 'type': 'executable', |
| 85 'dependencies': [ | 85 'dependencies': [ |
| 86 '../../base/base.gyp:base', | 86 '../../base/base.gyp:base', |
| 87 '../../base/base.gyp:base_i18n', | 87 '../../base/base.gyp:base_i18n', |
| 88 '../../skia/skia.gyp:skia', | 88 '../../skia/skia.gyp:skia', |
| 89 '../../third_party/icu/icu.gyp:icui18n', | 89 '../../third_party/icu/icu.gyp:icui18n', |
| 90 '../../third_party/icu/icu.gyp:icuuc', | 90 '../../third_party/icu/icu.gyp:icuuc', |
| 91 '../gfx/compositor/compositor.gyp:compositor', | 91 '../gfx/compositor/compositor.gyp:compositor', |
| 92 '../gfx/compositor/compositor.gyp:compositor_test_support', | |
| 93 '../ui.gyp:gfx_resources', | 92 '../ui.gyp:gfx_resources', |
| 94 '../ui.gyp:ui', | 93 '../ui.gyp:ui', |
| 95 '../ui.gyp:ui_resources', | 94 '../ui.gyp:ui_resources', |
| 96 'aura', | 95 'aura', |
| 97 ], | 96 ], |
| 98 'include_dirs': [ | 97 'include_dirs': [ |
| 99 '..', | 98 '..', |
| 100 ], | 99 ], |
| 101 'sources': [ | 100 'sources': [ |
| 102 'demo/demo_main.cc', | 101 'demo/demo_main.cc', |
| 103 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 104 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 105 ], | 104 ], |
| 106 }, | 105 }, |
| 107 { | 106 { |
| 108 'target_name': 'aura_unittests', | 107 'target_name': 'aura_unittests', |
| 109 'type': 'executable', | 108 'type': 'executable', |
| 110 'dependencies': [ | 109 'dependencies': [ |
| 111 '../../base/base.gyp:test_support_base', | 110 '../../base/base.gyp:test_support_base', |
| 112 '../../skia/skia.gyp:skia', | 111 '../../skia/skia.gyp:skia', |
| 113 '../../testing/gtest.gyp:gtest', | 112 '../../testing/gtest.gyp:gtest', |
| 113 '../gfx/compositor/compositor.gyp:compositor', |
| 114 '../gfx/compositor/compositor.gyp:compositor_test_support', | 114 '../gfx/compositor/compositor.gyp:compositor_test_support', |
| 115 '../gfx/compositor/compositor.gyp:test_compositor', | |
| 116 '../gfx/gl/gl.gyp:gl', | 115 '../gfx/gl/gl.gyp:gl', |
| 117 '../ui.gyp:gfx_resources', | 116 '../ui.gyp:gfx_resources', |
| 118 '../ui.gyp:ui', | 117 '../ui.gyp:ui', |
| 119 '../ui.gyp:ui_resources', | 118 '../ui.gyp:ui_resources', |
| 120 'test_support_aura', | 119 'test_support_aura', |
| 121 'aura', | 120 'aura', |
| 122 ], | 121 ], |
| 123 'include_dirs': [ | 122 'include_dirs': [ |
| 124 '..', | 123 '..', |
| 125 ], | 124 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 144 }], | 143 }], |
| 145 ['OS!="mac"', { | 144 ['OS!="mac"', { |
| 146 'dependencies': [ | 145 'dependencies': [ |
| 147 '../../chrome/chrome.gyp:packed_resources', | 146 '../../chrome/chrome.gyp:packed_resources', |
| 148 ], | 147 ], |
| 149 }], | 148 }], |
| 150 ], | 149 ], |
| 151 }, | 150 }, |
| 152 ], | 151 ], |
| 153 } | 152 } |
| OLD | NEW |