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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9699054: rlz: Hook up on mac, switch to chrome's network stack on win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 4502 matching lines...) Expand 10 before | Expand all | Expand 10 after
4513 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 4513 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
4514 '$(SDKROOT)/System/Library/Frameworks/DiskArbitration.framework', 4514 '$(SDKROOT)/System/Library/Frameworks/DiskArbitration.framework',
4515 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 4515 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
4516 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 4516 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
4517 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 4517 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
4518 '$(SDKROOT)/System/Library/Frameworks/SecurityInterface.framework' , 4518 '$(SDKROOT)/System/Library/Frameworks/SecurityInterface.framework' ,
4519 ], 4519 ],
4520 }, 4520 },
4521 'dependencies': [ 4521 'dependencies': [
4522 '../base/base.gyp:closure_blocks_leopard_compat', 4522 '../base/base.gyp:closure_blocks_leopard_compat',
4523 '../rlz/rlz.gyp:rlz_lib',
4523 '../third_party/icon_family/icon_family.gyp:icon_family', 4524 '../third_party/icon_family/icon_family.gyp:icon_family',
4524 ], 4525 ],
4525 'actions': [ 4526 'actions': [
4526 { 4527 {
4527 # This action is used to extract the localization data from xib 4528 # This action is used to extract the localization data from xib
4528 # files and generate table for the ui localizer from it. 4529 # files and generate table for the ui localizer from it.
4529 'variables': { 4530 'variables': {
4530 'xib_localizer_tool_path': 4531 'xib_localizer_tool_path':
4531 'tools/build/mac/generate_localizer', 4532 'tools/build/mac/generate_localizer',
4532 'xib_files_to_scan': [ 4533 'xib_files_to_scan': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
4578 ], 4579 ],
4579 'outputs': [ 4580 'outputs': [
4580 '<(INTERMEDIATE_DIR)/ui_localizer_table.h', 4581 '<(INTERMEDIATE_DIR)/ui_localizer_table.h',
4581 ], 4582 ],
4582 'action': ['<(xib_localizer_tool_path)', 4583 'action': ['<(xib_localizer_tool_path)',
4583 '<@(_outputs)', 4584 '<@(_outputs)',
4584 '<@(xib_files_to_scan)'], 4585 '<@(xib_files_to_scan)'],
4585 }, 4586 },
4586 ], 4587 ],
4587 }], 4588 }],
4589 ['OS=="win" or OS=="mac"', {
4590 'dependencies': [
4591 '../rlz/rlz.gyp:rlz_lib',
4592 ],
4593 }, { # 'OS!="win" or OS!="mac"
Roger Tawa OOO till Jul 10th 2012/03/24 01:10:42 or --> and
Nico 2012/03/24 01:29:47 Done.
4594 'sources/': [
4595 # Exclude all of rlz.
4596 ['exclude', '^browser/rlz/'],
4597 ['exclude', '^browser/extensions/extension_rlz_module'],
4598 ],
4599 }],
4588 ['OS=="win"', { 4600 ['OS=="win"', {
4589 'include_dirs': [ 4601 'include_dirs': [
4590 '<(DEPTH)/third_party/wtl/include', 4602 '<(DEPTH)/third_party/wtl/include',
4591 ], 4603 ],
4592 'dependencies': [ 4604 'dependencies': [
4593 '../google_update/google_update.gyp:google_update', 4605 '../google_update/google_update.gyp:google_update',
4594 '../rlz/rlz.gyp:rlz_lib',
4595 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 4606 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
4596 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 4607 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
4597 '../ui/views/views.gyp:views', 4608 '../ui/views/views.gyp:views',
4598 ], 4609 ],
4599 'export_dependent_settings': [ 4610 'export_dependent_settings': [
4600 '../ui/views/views.gyp:views', 4611 '../ui/views/views.gyp:views',
4601 ], 4612 ],
4602 'sources': [ 4613 'sources': [
4603 # Using built-in rule in vstudio for midl. 4614 # Using built-in rule in vstudio for midl.
4604 'browser/history/history_indexer.idl', 4615 'browser/history/history_indexer.idl',
(...skipping 24 matching lines...) Expand all
4629 }], 4640 }],
4630 ], 4641 ],
4631 }, { # 'OS!="win" 4642 }, { # 'OS!="win"
4632 'sources/': [ 4643 'sources/': [
4633 # Exclude all of hang_monitor. 4644 # Exclude all of hang_monitor.
4634 ['exclude', '^browser/hang_monitor/'], 4645 ['exclude', '^browser/hang_monitor/'],
4635 4646
4636 # Exclude parts of password_manager. 4647 # Exclude parts of password_manager.
4637 ['exclude', '^browser/password_manager/ie7_password\\.cc$'], 4648 ['exclude', '^browser/password_manager/ie7_password\\.cc$'],
4638 4649
4639 # Exclude all of rlz.
4640 ['exclude', '^browser/rlz/'],
4641 ['exclude', '^browser/extensions/extension_rlz_module'],
4642
4643 # Exclude all of views. 4650 # Exclude all of views.
4644 ['exclude', '^browser/ui/views/'], 4651 ['exclude', '^browser/ui/views/'],
4645 4652
4646 # Exclude try chrome dialog. 4653 # Exclude try chrome dialog.
4647 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'], 4654 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'],
4648 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'], 4655 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'],
4649 ], 4656 ],
4650 'conditions': [ 4657 'conditions': [
4651 ['use_aura==1',{ 4658 ['use_aura==1',{
4652 'sources/': [ 4659 'sources/': [
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
5133 'variables': { 5140 'variables': {
5134 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5141 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5135 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5142 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5136 }, 5143 },
5137 'includes': ['../build/protoc.gypi'], 5144 'includes': ['../build/protoc.gypi'],
5138 }], 5145 }],
5139 ], 5146 ],
5140 }, 5147 },
5141 ], 5148 ],
5142 } 5149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698