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

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: rebase 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 4586 matching lines...) Expand 10 before | Expand all | Expand 10 after
4597 ], 4597 ],
4598 'outputs': [ 4598 'outputs': [
4599 '<(INTERMEDIATE_DIR)/ui_localizer_table.h', 4599 '<(INTERMEDIATE_DIR)/ui_localizer_table.h',
4600 ], 4600 ],
4601 'action': ['<(xib_localizer_tool_path)', 4601 'action': ['<(xib_localizer_tool_path)',
4602 '<@(_outputs)', 4602 '<@(_outputs)',
4603 '<@(xib_files_to_scan)'], 4603 '<@(xib_files_to_scan)'],
4604 }, 4604 },
4605 ], 4605 ],
4606 }], 4606 }],
4607 ['OS=="win" or OS=="mac"', {
4608 'dependencies': [
4609 '../rlz/rlz.gyp:rlz_lib',
4610 ],
4611 }, { # 'OS!="win" and OS!="mac"
4612 'sources/': [
4613 # Exclude all of rlz.
4614 ['exclude', '^browser/rlz/'],
4615 ],
4616 }],
4607 ['OS=="win"', { 4617 ['OS=="win"', {
4608 'include_dirs': [ 4618 'include_dirs': [
4609 '<(DEPTH)/third_party/wtl/include', 4619 '<(DEPTH)/third_party/wtl/include',
4610 ], 4620 ],
4611 'dependencies': [ 4621 'dependencies': [
4612 '../google_update/google_update.gyp:google_update', 4622 '../google_update/google_update.gyp:google_update',
4613 '../rlz/rlz.gyp:rlz_lib',
4614 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 4623 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
4615 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 4624 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
4616 '../ui/views/views.gyp:views', 4625 '../ui/views/views.gyp:views',
4617 ], 4626 ],
4618 'export_dependent_settings': [ 4627 'export_dependent_settings': [
4619 '../ui/views/views.gyp:views', 4628 '../ui/views/views.gyp:views',
4620 ], 4629 ],
4621 'sources': [ 4630 'sources': [
4622 # Using built-in rule in vstudio for midl. 4631 # Using built-in rule in vstudio for midl.
4623 'browser/history/history_indexer.idl', 4632 'browser/history/history_indexer.idl',
(...skipping 24 matching lines...) Expand all
4648 }], 4657 }],
4649 ], 4658 ],
4650 }, { # 'OS!="win" 4659 }, { # 'OS!="win"
4651 'sources/': [ 4660 'sources/': [
4652 # Exclude all of hang_monitor. 4661 # Exclude all of hang_monitor.
4653 ['exclude', '^browser/hang_monitor/'], 4662 ['exclude', '^browser/hang_monitor/'],
4654 4663
4655 # Exclude parts of password_manager. 4664 # Exclude parts of password_manager.
4656 ['exclude', '^browser/password_manager/ie7_password\\.cc$'], 4665 ['exclude', '^browser/password_manager/ie7_password\\.cc$'],
4657 4666
4658 # Exclude all of rlz.
4659 ['exclude', '^browser/rlz/'],
4660 ['exclude', '^browser/extensions/extension_rlz_module'],
4661
4662 # Exclude all of views. 4667 # Exclude all of views.
4663 ['exclude', '^browser/ui/views/'], 4668 ['exclude', '^browser/ui/views/'],
4664 4669
4665 # Exclude try chrome dialog. 4670 # Exclude try chrome dialog.
4666 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'], 4671 ['exclude', '^browser/first_run/try_chrome_dialog_view.cc'],
4667 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'], 4672 ['exclude', '^browser/first_run/try_chrome_dialog_view.h'],
4668 ], 4673 ],
4669 'conditions': [ 4674 'conditions': [
4670 ['use_aura==1',{ 4675 ['use_aura==1',{
4671 'sources/': [ 4676 'sources/': [
(...skipping 14 matching lines...) Expand all
4686 '../ui/views/views.gyp:views', 4691 '../ui/views/views.gyp:views',
4687 ], 4692 ],
4688 'include_dirs': [ 4693 'include_dirs': [
4689 '<(INTERMEDIATE_DIR)', 4694 '<(INTERMEDIATE_DIR)',
4690 '<(INTERMEDIATE_DIR)/chrome', 4695 '<(INTERMEDIATE_DIR)/chrome',
4691 ], 4696 ],
4692 'sources/': [ 4697 'sources/': [
4693 # This exclude duplicates the one just above because of the 4698 # This exclude duplicates the one just above because of the
4694 # order of evaluation of the 'sources/' rule above, the 4699 # order of evaluation of the 'sources/' rule above, the
4695 # conditions, and this 'sources/' rule. 4700 # conditions, and this 'sources/' rule.
4696 ['exclude', '^browser/extensions/extension_rlz_module'],
4697 ['exclude', '^browser/google/google_update.cc'], 4701 ['exclude', '^browser/google/google_update.cc'],
4698 ['exclude', '^browser/google/google_update.h'], 4702 ['exclude', '^browser/google/google_update.h'],
4699 ['exclude', '^browser/platform_util_common_linux.cc'], 4703 ['exclude', '^browser/platform_util_common_linux.cc'],
4700 ['include', 'browser/printing/print_dialog_cloud.cc'], 4704 ['include', 'browser/printing/print_dialog_cloud.cc'],
4701 ['include', 'browser/printing/print_dialog_cloud.h'], 4705 ['include', 'browser/printing/print_dialog_cloud.h'],
4702 ['include', '^browser/speech/speech_recognition_bubble_views.cc' ], 4706 ['include', '^browser/speech/speech_recognition_bubble_views.cc' ],
4703 ['include', '^browser/ui/tabs/dock_info.cc'], 4707 ['include', '^browser/ui/tabs/dock_info.cc'],
4704 ['include', '^browser/ui/tabs/dock_info.h'], 4708 ['include', '^browser/ui/tabs/dock_info.h'],
4705 ['include', '^browser/ui/views/about_chrome_view.cc'], 4709 ['include', '^browser/ui/views/about_chrome_view.cc'],
4706 ['include', '^browser/ui/views/about_chrome_view.h'], 4710 ['include', '^browser/ui/views/about_chrome_view.h'],
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
5152 'variables': { 5156 'variables': {
5153 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5157 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5154 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5158 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5155 }, 5159 },
5156 'includes': ['../build/protoc.gypi'], 5160 'includes': ['../build/protoc.gypi'],
5157 }], 5161 }],
5158 ], 5162 ],
5159 }, 5163 },
5160 ], 5164 ],
5161 } 5165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698