Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/chrome.gyp

Issue 565043: OpenBSD/FreeBSD GYP changes (most of the remaining ones) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | courgette/courgette.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 'browser/debugger/devtools_remote_service.cc', 451 'browser/debugger/devtools_remote_service.cc',
452 'browser/debugger/devtools_remote_service.h', 452 'browser/debugger/devtools_remote_service.h',
453 'browser/debugger/devtools_window.cc', 453 'browser/debugger/devtools_window.cc',
454 'browser/debugger/devtools_window.h', 454 'browser/debugger/devtools_window.h',
455 'browser/debugger/extension_ports_remote_service.cc', 455 'browser/debugger/extension_ports_remote_service.cc',
456 'browser/debugger/extension_ports_remote_service.h', 456 'browser/debugger/extension_ports_remote_service.h',
457 'browser/debugger/inspectable_tab_proxy.cc', 457 'browser/debugger/inspectable_tab_proxy.cc',
458 'browser/debugger/inspectable_tab_proxy.h', 458 'browser/debugger/inspectable_tab_proxy.h',
459 ], 459 ],
460 'conditions': [ 460 'conditions': [
461 ['OS=="linux" or OS=="freebsd"', { 461 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
462 'dependencies': [ 462 'dependencies': [
463 '../build/linux/system.gyp:gtk', 463 '../build/linux/system.gyp:gtk',
wtc 2010/02/04 20:17:35 Perhaps the build/linux directory should be rename
464 ], 464 ],
465 }], 465 }],
466 ], 466 ],
467 }, 467 },
468 { 468 {
469 'target_name': 'plugin', 469 'target_name': 'plugin',
470 'type': '<(library)', 470 'type': '<(library)',
471 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A', 471 'msvs_guid': '20A560A0-2CD0-4D9E-A58B-1F24B99C087A',
472 'dependencies': [ 472 'dependencies': [
473 'common', 473 'common',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 }], 528 }],
529 ['enable_gpu==1', { 529 ['enable_gpu==1', {
530 'dependencies': [ 530 'dependencies': [
531 '../gpu/gpu.gyp:command_buffer_service', 531 '../gpu/gpu.gyp:command_buffer_service',
532 ], 532 ],
533 'sources': [ 533 'sources': [
534 'plugin/command_buffer_stub.cc', 534 'plugin/command_buffer_stub.cc',
535 'plugin/command_buffer_stub.h', 535 'plugin/command_buffer_stub.h',
536 ], 536 ],
537 },], 537 },],
538 ['OS=="linux" or OS=="freebsd"', { 538 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
539 'dependencies': [ 539 'dependencies': [
540 '../build/linux/system.gyp:gtk', 540 '../build/linux/system.gyp:gtk',
541 ], 541 ],
542 }], 542 }],
543 ], 543 ],
544 }, 544 },
545 { 545 {
546 'target_name': 'utility', 546 'target_name': 'utility',
547 'type': '<(library)', 547 'type': '<(library)',
548 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', 548 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7',
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 '_CRT_SECURE_NO_WARNINGS', 816 '_CRT_SECURE_NO_WARNINGS',
817 '_USE_32BIT_TIME_T', 817 '_USE_32BIT_TIME_T',
818 'kXmppProductName="chromium-sync"', 818 'kXmppProductName="chromium-sync"',
819 ], 819 ],
820 'dependencies': [ 820 'dependencies': [
821 '../third_party/expat/expat.gyp:expat', 821 '../third_party/expat/expat.gyp:expat',
822 '../third_party/libjingle/libjingle.gyp:libjingle', 822 '../third_party/libjingle/libjingle.gyp:libjingle',
823 'sync_proto', 823 'sync_proto',
824 ], 824 ],
825 'conditions': [ 825 'conditions': [
826 ['OS=="linux"', { 826 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
827 'dependencies': [ 827 'dependencies': [
828 '../build/linux/system.gyp:gtk' 828 '../build/linux/system.gyp:gtk'
829 ], 829 ],
830 }], 830 }],
831 ], 831 ],
832 }, 832 },
833 { 833 {
834 'target_name': 'sync', 834 'target_name': 'sync',
835 'type': '<(library)', 835 'type': '<(library)',
836 'sources': [ 836 'sources': [
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 '../third_party/libjingle/libjingle.gyp:libjingle', 959 '../third_party/libjingle/libjingle.gyp:libjingle',
960 'sync_proto', 960 'sync_proto',
961 ], 961 ],
962 'conditions': [ 962 'conditions': [
963 ['OS=="win"', { 963 ['OS=="win"', {
964 'sources' : [ 964 'sources' : [
965 'browser/sync/util/data_encryption.cc', 965 'browser/sync/util/data_encryption.cc',
966 'browser/sync/util/data_encryption.h', 966 'browser/sync/util/data_encryption.h',
967 ], 967 ],
968 }], 968 }],
969 ['OS=="linux"', { 969 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
970 'dependencies': [ 970 'dependencies': [
971 '../build/linux/system.gyp:gtk' 971 '../build/linux/system.gyp:gtk'
972 ], 972 ],
973 'link_settings': { 973 'link_settings': {
974 'libraries': [ 974 'libraries': [
975 '-lXss', 975 '-lXss',
976 ], 976 ],
977 }, 977 },
978 }], 978 }],
979 ['OS=="mac"', { 979 ['OS=="mac"', {
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 1507 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
1508 }, 1508 },
1509 }, 1509 },
1510 }, 1510 },
1511 }, 1511 },
1512 }], 1512 }],
1513 ], 1513 ],
1514 }, 1514 },
1515 ]}, # 'targets' 1515 ]}, # 'targets'
1516 ], # OS=="win" 1516 ], # OS=="win"
1517 ['OS=="linux" or OS=="freebsd"', { 1517 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
1518 'targets': [{ 1518 'targets': [{
1519 'target_name': 'packed_resources', 1519 'target_name': 'packed_resources',
1520 'type': 'none', 1520 'type': 'none',
1521 'variables': { 1521 'variables': {
1522 'repack_path': '../tools/data_pack/repack.py', 1522 'repack_path': '../tools/data_pack/repack.py',
1523 }, 1523 },
1524 'actions': [ 1524 'actions': [
1525 # TODO(mark): These actions are duplicated for the Mac in the 1525 # TODO(mark): These actions are duplicated for the Mac in the
1526 # chrome_dll target. Can they be unified? 1526 # chrome_dll target. Can they be unified?
1527 # 1527 #
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 ], 1593 ],
1594 }, 1594 },
1595 { 1595 {
1596 'destination': '<(PRODUCT_DIR)', 1596 'destination': '<(PRODUCT_DIR)',
1597 'files': [ 1597 'files': [
1598 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1598 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1599 ], 1599 ],
1600 }, 1600 },
1601 ], 1601 ],
1602 }], # targets 1602 }], # targets
1603 }], # OS=="linux" or OS=="freebsd" 1603 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd"
1604 ], # 'conditions' 1604 ], # 'conditions'
1605 } 1605 }
1606 1606
1607 # Local Variables: 1607 # Local Variables:
1608 # tab-width:2 1608 # tab-width:2
1609 # indent-tabs-mode:nil 1609 # indent-tabs-mode:nil
1610 # End: 1610 # End:
1611 # vim: set expandtab tabstop=2 shiftwidth=2: 1611 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | courgette/courgette.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698