| 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 '../third_party/libpng/libpng.gyp:libpng', | 417 '../third_party/libpng/libpng.gyp:libpng', |
| 418 '../third_party/zlib/zlib.gyp:zlib', | 418 '../third_party/zlib/zlib.gyp:zlib', |
| 419 ], | 419 ], |
| 420 'export_dependent_settings': [ | 420 'export_dependent_settings': [ |
| 421 'base', | 421 'base', |
| 422 ], | 422 ], |
| 423 'conditions': [ | 423 'conditions': [ |
| 424 [ 'OS != "win"', { 'sources!': [ | 424 [ 'OS != "win"', { 'sources!': [ |
| 425 'gfx/gdi_util.cc', | 425 'gfx/gdi_util.cc', |
| 426 'gfx/native_theme.cc', | 426 'gfx/native_theme.cc', |
| 427 » ], | 427 ], |
| 428 }], | 428 }], |
| 429 [ 'OS != "linux"', { 'sources!': [ | 429 [ 'OS != "linux"', { 'sources!': [ |
| 430 'gfx/gtk_util.cc', | 430 'gfx/gtk_util.cc', |
| 431 » ], | 431 ], |
| 432 }], | 432 }], |
| 433 ], | 433 ], |
| 434 }, | 434 }, |
| 435 { | 435 { |
| 436 'target_name': 'base_unittests', | 436 'target_name': 'base_unittests', |
| 437 'type': 'executable', | 437 'type': 'executable', |
| 438 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', |
| 438 'sources': [ | 439 'sources': [ |
| 439 'gfx/jpeg_codec_unittest.cc', | 440 'gfx/jpeg_codec_unittest.cc', |
| 440 'gfx/native_theme_unittest.cc', | 441 'gfx/native_theme_unittest.cc', |
| 441 'gfx/png_codec_unittest.cc', | 442 'gfx/png_codec_unittest.cc', |
| 442 'gfx/rect_unittest.cc', | 443 'gfx/rect_unittest.cc', |
| 443 'at_exit_unittest.cc', | 444 'at_exit_unittest.cc', |
| 444 'atomicops_unittest.cc', | 445 'atomicops_unittest.cc', |
| 445 'clipboard_unittest.cc', | 446 'clipboard_unittest.cc', |
| 446 'command_line_unittest.cc', | 447 'command_line_unittest.cc', |
| 447 'condition_variable_unittest.cc', | 448 'condition_variable_unittest.cc', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 'target_name': 'debug_message', | 565 'target_name': 'debug_message', |
| 565 'type': 'executable', | 566 'type': 'executable', |
| 566 'sources': [ | 567 'sources': [ |
| 567 'debug_message.cc', | 568 'debug_message.cc', |
| 568 ], | 569 ], |
| 569 }, | 570 }, |
| 570 ], | 571 ], |
| 571 }], | 572 }], |
| 572 ], | 573 ], |
| 573 } | 574 } |
| OLD | NEW |