OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 }, | 372 }, |
373 ], | 373 ], |
374 ], | 374 ], |
375 }, | 375 }, |
376 { | 376 { |
377 'target_name': 'base_gfx', | 377 'target_name': 'base_gfx', |
378 'type': 'static_library', | 378 'type': 'static_library', |
379 'sources': [ | 379 'sources': [ |
380 'gfx/gdi_util.cc', | 380 'gfx/gdi_util.cc', |
381 'gfx/gdi_util.h', | 381 'gfx/gdi_util.h', |
| 382 'gfx/gtk_util.cc', |
| 383 'gfx/gtk_util.h', |
382 'gfx/jpeg_codec.cc', | 384 'gfx/jpeg_codec.cc', |
383 'gfx/jpeg_codec.h', | 385 'gfx/jpeg_codec.h', |
384 'gfx/native_theme.cc', | 386 'gfx/native_theme.cc', |
385 'gfx/native_theme.h', | 387 'gfx/native_theme.h', |
386 'gfx/native_widget_types.h', | 388 'gfx/native_widget_types.h', |
387 'gfx/platform_canvas.h', | 389 'gfx/platform_canvas.h', |
388 'gfx/platform_canvas_linux.h', | 390 'gfx/platform_canvas_linux.h', |
389 'gfx/platform_canvas_mac.h', | 391 'gfx/platform_canvas_mac.h', |
390 'gfx/platform_device_linux.h', | 392 'gfx/platform_device_linux.h', |
391 'gfx/platform_device_mac.h', | 393 'gfx/platform_device_mac.h', |
(...skipping 16 matching lines...) Expand all Loading... |
408 '../skia/skia.gyp:skia', | 410 '../skia/skia.gyp:skia', |
409 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | 411 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
410 '../third_party/libpng/libpng.gyp:libpng', | 412 '../third_party/libpng/libpng.gyp:libpng', |
411 '../third_party/zlib/zlib.gyp:zlib', | 413 '../third_party/zlib/zlib.gyp:zlib', |
412 ], | 414 ], |
413 'export_dependent_settings': [ | 415 'export_dependent_settings': [ |
414 'base', | 416 'base', |
415 ], | 417 ], |
416 'conditions': [ | 418 'conditions': [ |
417 [ 'OS != "win"', { 'sources!': [ | 419 [ 'OS != "win"', { 'sources!': [ |
418 'gfx/gdi_util.cc', | 420 'gfx/gdi_util.cc', |
419 'gfx/native_theme.cc' ] | 421 'gfx/native_theme.cc', |
| 422 » ], |
| 423 }], |
| 424 [ 'OS != "linux"', { 'sources!': [ |
| 425 'gfx/gtk_util.cc', |
| 426 » ], |
420 }], | 427 }], |
421 ], | 428 ], |
422 }, | 429 }, |
423 { | 430 { |
424 'target_name': 'base_unittests', | 431 'target_name': 'base_unittests', |
425 'type': 'executable', | 432 'type': 'executable', |
426 'sources': [ | 433 'sources': [ |
427 'gfx/jpeg_codec_unittest.cc', | 434 'gfx/jpeg_codec_unittest.cc', |
428 'gfx/native_theme_unittest.cc', | 435 'gfx/native_theme_unittest.cc', |
429 'gfx/png_codec_unittest.cc', | 436 'gfx/png_codec_unittest.cc', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 'target_name': 'debug_message', | 559 'target_name': 'debug_message', |
553 'type': 'executable', | 560 'type': 'executable', |
554 'sources': [ | 561 'sources': [ |
555 'debug_message.cc', | 562 'debug_message.cc', |
556 ], | 563 ], |
557 }, | 564 }, |
558 ], | 565 ], |
559 }], | 566 }], |
560 ], | 567 ], |
561 } | 568 } |
OLD | NEW |