| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'app_base_target': 0, | 8 'app_base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'variables': { | 66 'variables': { |
| 67 'app_base_target': 1, | 67 'app_base_target': 1, |
| 68 }, | 68 }, |
| 69 'dependencies': [ | 69 'dependencies': [ |
| 70 # app resources and app_strings should be shared with the 64-bit | 70 # app resources and app_strings should be shared with the 64-bit |
| 71 # target, but it doesn't work due to a bug in gyp | 71 # target, but it doesn't work due to a bug in gyp |
| 72 'app_resources', | 72 'app_resources', |
| 73 'app_strings', | 73 'app_strings', |
| 74 '../base/base.gyp:base', | 74 '../base/base.gyp:base', |
| 75 '../base/base.gyp:base_i18n', | 75 '../base/base.gyp:base_i18n', |
| 76 '../gfx/gfx.gyp:gfx', |
| 76 '../net/net.gyp:net', | 77 '../net/net.gyp:net', |
| 77 '../skia/skia.gyp:skia', | 78 '../skia/skia.gyp:skia', |
| 78 '../third_party/icu/icu.gyp:icui18n', | 79 '../third_party/icu/icu.gyp:icui18n', |
| 79 '../third_party/icu/icu.gyp:icuuc', | 80 '../third_party/icu/icu.gyp:icuuc', |
| 80 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | 81 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
| 81 '../third_party/libpng/libpng.gyp:libpng', | 82 '../third_party/libpng/libpng.gyp:libpng', |
| 82 '../third_party/sqlite/sqlite.gyp:sqlite', | 83 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 83 '../third_party/zlib/zlib.gyp:zlib', | 84 '../third_party/zlib/zlib.gyp:zlib', |
| 84 ], | 85 ], |
| 85 # TODO(gregoryd): The direct_dependent_settings should be shared with | 86 # TODO(gregoryd): The direct_dependent_settings should be shared with |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'gfx/font_gtk.cc', | 129 'gfx/font_gtk.cc', |
| 129 'gfx/font_mac.mm', | 130 'gfx/font_mac.mm', |
| 130 'gfx/font_skia.cc', | 131 'gfx/font_skia.cc', |
| 131 'gfx/font_util.h', | 132 'gfx/font_util.h', |
| 132 'gfx/font_util.cc', | 133 'gfx/font_util.cc', |
| 133 'gfx/font_win.cc', | 134 'gfx/font_win.cc', |
| 134 'gfx/gdi_util.cc', | 135 'gfx/gdi_util.cc', |
| 135 'gfx/gdi_util.h', | 136 'gfx/gdi_util.h', |
| 136 'gfx/gtk_util.cc', | 137 'gfx/gtk_util.cc', |
| 137 'gfx/gtk_util.h', | 138 'gfx/gtk_util.h', |
| 138 'gfx/icon_util.cc', | |
| 139 'gfx/icon_util.h', | |
| 140 'gfx/insets.h', | 139 'gfx/insets.h', |
| 141 'gfx/insets.cc', | 140 'gfx/insets.cc', |
| 142 'gfx/native_widget_types.h', | 141 'gfx/native_widget_types.h', |
| 143 'gfx/native_widget_types_gtk.cc', | 142 'gfx/native_widget_types_gtk.cc', |
| 144 'gfx/native_theme_win.cc', | 143 'gfx/native_theme_win.cc', |
| 145 'gfx/native_theme_win.h', | 144 'gfx/native_theme_win.h', |
| 146 'gfx/gtk_native_view_id_manager.cc', | 145 'gfx/gtk_native_view_id_manager.cc', |
| 147 'gfx/gtk_native_view_id_manager.h', | 146 'gfx/gtk_native_view_id_manager.h', |
| 148 'gfx/path.cc', | 147 'gfx/path.cc', |
| 149 'gfx/path_gtk.cc', | 148 'gfx/path_gtk.cc', |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'configurations': { | 297 'configurations': { |
| 299 'Common_Base': { | 298 'Common_Base': { |
| 300 'msvs_target_platform': 'x64', | 299 'msvs_target_platform': 'x64', |
| 301 }, | 300 }, |
| 302 }, | 301 }, |
| 303 }, | 302 }, |
| 304 ], | 303 ], |
| 305 }], | 304 }], |
| 306 ], | 305 ], |
| 307 } | 306 } |
| OLD | NEW |