Chromium Code Reviews| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 521 'third_party/purify/pure_api.c', | 521 'third_party/purify/pure_api.c', |
| 522 'base_drag_source.cc', | 522 'base_drag_source.cc', |
| 523 'base_drop_target.cc', | 523 'base_drop_target.cc', |
| 524 'event_recorder.cc', | 524 'event_recorder.cc', |
| 525 'file_version_info.cc', | 525 'file_version_info.cc', |
| 526 'registry.cc', | 526 'registry.cc', |
| 527 'resource_util.cc', | 527 'resource_util.cc', |
| 528 'win_util.cc', | 528 'win_util.cc', |
| 529 ], | 529 ], |
| 530 },], | 530 },], |
| 531 [ 'OS=="win" and component=="shared_library"', { | 531 [ 'component=="shared_library"', { |
| 532 'defines': [ | 532 'defines': [ |
| 533 'BASE_DLL', | 533 'BASE_DLL', |
| 534 'BASE_IMPLEMENTATION=1', | 534 'BASE_IMPLEMENTATION=1', |
| 535 ], | 535 ], |
| 536 'msvs_disabled_warnings': [ | 536 'conditions': [ |
| 537 4251, | 537 ['OS=="win"', { |
| 538 'msvs_disabled_warnings': [ | |
| 539 4251, | |
| 540 ], | |
| 541 'sources!': [ | |
| 542 'debug/debug_on_start_win.cc', | |
| 543 ], | |
| 544 'direct_dependent_settings': { | |
|
Lei Zhang
2011/04/28 23:21:45
Do we need to propagate the BASE_DLL define for OS
Evan Martin
2011/04/28 23:24:52
No, it's used for dllimport on Win but it doesn't
| |
| 545 'defines': [ | |
| 546 'BASE_DLL', | |
| 547 ], | |
| 548 'msvs_disabled_warnings': [ | |
| 549 4251, | |
| 550 ], | |
| 551 }, | |
| 552 }], | |
| 538 ], | 553 ], |
| 539 'sources!': [ | |
| 540 'debug/debug_on_start_win.cc', | |
| 541 ], | |
| 542 'direct_dependent_settings': { | |
| 543 'defines': [ | |
| 544 'BASE_DLL', | |
| 545 ], | |
| 546 'msvs_disabled_warnings': [ | |
| 547 4251, | |
| 548 ], | |
| 549 }, | |
| 550 }], | 554 }], |
| 551 ], | 555 ], |
| 552 'sources': [ | 556 'sources': [ |
| 553 'third_party/nspr/prcpucfg.h', | 557 'third_party/nspr/prcpucfg.h', |
| 554 'third_party/nspr/prcpucfg_win.h', | 558 'third_party/nspr/prcpucfg_win.h', |
| 555 'third_party/nspr/prtypes.h', | 559 'third_party/nspr/prtypes.h', |
| 556 'third_party/purify/pure.h', | 560 'third_party/purify/pure.h', |
| 557 'third_party/purify/pure_api.c', | 561 'third_party/purify/pure_api.c', |
| 558 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | 562 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', |
| 559 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h', | 563 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h', |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 677 'third_party/xdg_mime/xdgmimemagic.c', | 681 'third_party/xdg_mime/xdgmimemagic.c', |
| 678 'third_party/xdg_mime/xdgmimemagic.h', | 682 'third_party/xdg_mime/xdgmimemagic.h', |
| 679 'third_party/xdg_mime/xdgmimeparent.c', | 683 'third_party/xdg_mime/xdgmimeparent.c', |
| 680 'third_party/xdg_mime/xdgmimeparent.h', | 684 'third_party/xdg_mime/xdgmimeparent.h', |
| 681 ], | 685 ], |
| 682 }, | 686 }, |
| 683 ], | 687 ], |
| 684 }], | 688 }], |
| 685 ], | 689 ], |
| 686 } | 690 } |
| OLD | NEW |