| 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 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. | 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 'gfx/point.h', | 258 'gfx/point.h', |
| 259 'gfx/rect.cc', | 259 'gfx/rect.cc', |
| 260 'gfx/rect.h', | 260 'gfx/rect.h', |
| 261 'gfx/render_text.cc', | 261 'gfx/render_text.cc', |
| 262 'gfx/render_text.h', | 262 'gfx/render_text.h', |
| 263 'gfx/render_text_linux.cc', | 263 'gfx/render_text_linux.cc', |
| 264 'gfx/render_text_linux.h', | 264 'gfx/render_text_linux.h', |
| 265 'gfx/render_text_win.cc', | 265 'gfx/render_text_win.cc', |
| 266 'gfx/render_text_win.h', | 266 'gfx/render_text_win.h', |
| 267 'gfx/screen.h', | 267 'gfx/screen.h', |
| 268 'gfx/screen_aura.cc', | |
| 269 'gfx/screen_gtk.cc', | 268 'gfx/screen_gtk.cc', |
| 270 'gfx/screen_wayland.cc', | 269 'gfx/screen_wayland.cc', |
| 271 'gfx/screen_win.cc', | 270 'gfx/screen_win.cc', |
| 272 'gfx/scoped_cg_context_save_gstate_mac.h', | 271 'gfx/scoped_cg_context_save_gstate_mac.h', |
| 273 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', | 272 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', |
| 274 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', | 273 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', |
| 275 'gfx/scrollbar_size.cc', | 274 'gfx/scrollbar_size.cc', |
| 276 'gfx/scrollbar_size.h', | 275 'gfx/scrollbar_size.h', |
| 277 'gfx/size.cc', | 276 'gfx/size.cc', |
| 278 'gfx/size.h', | 277 'gfx/size.h', |
| 279 'gfx/skbitmap_operations.cc', | 278 'gfx/skbitmap_operations.cc', |
| 280 'gfx/skbitmap_operations.h', | 279 'gfx/skbitmap_operations.h', |
| 281 'gfx/skia_util.cc', | 280 'gfx/skia_util.cc', |
| 282 'gfx/skia_util.h', | 281 'gfx/skia_util.h', |
| 283 'gfx/skia_utils_gtk.cc', | 282 'gfx/skia_utils_gtk.cc', |
| 284 'gfx/skia_utils_gtk.h', | 283 'gfx/skia_utils_gtk.h', |
| 285 'gfx/transform.h', | 284 'gfx/transform.h', |
| 286 'gfx/transform.cc', | 285 'gfx/transform.cc', |
| 287 ], | 286 ], |
| 288 'conditions': [ | 287 'conditions': [ |
| 289 ['use_aura==1', { | |
| 290 'sources/': [ | |
| 291 ['exclude', 'gfx/screen_win.cc'], | |
| 292 ], | |
| 293 }], | |
| 294 ['toolkit_uses_gtk == 1', { | 288 ['toolkit_uses_gtk == 1', { |
| 295 'dependencies': [ | 289 'dependencies': [ |
| 296 # font_gtk.cc uses fontconfig. | 290 # font_gtk.cc uses fontconfig. |
| 297 # TODO(evanm): I think this is wrong; it should just use GTK. | 291 # TODO(evanm): I think this is wrong; it should just use GTK. |
| 298 '../build/linux/system.gyp:fontconfig', | 292 '../build/linux/system.gyp:fontconfig', |
| 299 '../build/linux/system.gyp:gtk', | 293 '../build/linux/system.gyp:gtk', |
| 300 '../build/linux/system.gyp:x11', | 294 '../build/linux/system.gyp:x11', |
| 301 '../build/linux/system.gyp:xext', | 295 '../build/linux/system.gyp:xext', |
| 302 ], | 296 ], |
| 303 'sources': [ | 297 'sources': [ |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 'configurations': { | 526 'configurations': { |
| 533 'Common_Base': { | 527 'Common_Base': { |
| 534 'msvs_target_platform': 'x64', | 528 'msvs_target_platform': 'x64', |
| 535 }, | 529 }, |
| 536 }, | 530 }, |
| 537 }, | 531 }, |
| 538 ], | 532 ], |
| 539 }], | 533 }], |
| 540 ], | 534 ], |
| 541 } | 535 } |
| OLD | NEW |