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 '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 4505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4516 '<@(xib_files_to_scan)'], | 4516 '<@(xib_files_to_scan)'], |
4517 }, | 4517 }, |
4518 ], | 4518 ], |
4519 }], | 4519 }], |
4520 ['OS=="win"', { | 4520 ['OS=="win"', { |
4521 'include_dirs': [ | 4521 'include_dirs': [ |
4522 '<(DEPTH)/third_party/wtl/include', | 4522 '<(DEPTH)/third_party/wtl/include', |
4523 ], | 4523 ], |
4524 'dependencies': [ | 4524 'dependencies': [ |
4525 '../google_update/google_update.gyp:google_update', | 4525 '../google_update/google_update.gyp:google_update', |
| 4526 '../rlz/rlz.gyp:rlz_lib', |
4526 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 4527 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
4527 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 4528 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
4528 '../views/views.gyp:views', | 4529 '../ui/views/views.gyp:views', |
4529 '../rlz/rlz.gyp:rlz_lib', | |
4530 ], | 4530 ], |
4531 'export_dependent_settings': [ | 4531 'export_dependent_settings': [ |
4532 '../views/views.gyp:views', | 4532 '../ui/views/views.gyp:views', |
4533 ], | 4533 ], |
4534 'sources': [ | 4534 'sources': [ |
4535 'browser/first_run/upgrade_util.cc', | 4535 'browser/first_run/upgrade_util.cc', |
4536 'browser/first_run/upgrade_util.h', | 4536 'browser/first_run/upgrade_util.h', |
4537 # Using built-in rule in vstudio for midl. | 4537 # Using built-in rule in vstudio for midl. |
4538 'browser/history/history_indexer.idl', | 4538 'browser/history/history_indexer.idl', |
4539 'browser/ui/webui/conflicts_ui.cc', | 4539 'browser/ui/webui/conflicts_ui.cc', |
4540 'browser/ui/webui/conflicts_ui.h', | 4540 'browser/ui/webui/conflicts_ui.h', |
4541 ], | 4541 ], |
4542 'sources!': [ | 4542 'sources!': [ |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4593 ], | 4593 ], |
4594 'conditions': [ | 4594 'conditions': [ |
4595 ['OS=="linux" or use_aura==1',{ | 4595 ['OS=="linux" or use_aura==1',{ |
4596 'sources/': [ | 4596 'sources/': [ |
4597 ['include', '^browser/ui/views/accelerator_table.cc'], | 4597 ['include', '^browser/ui/views/accelerator_table.cc'], |
4598 ['include', '^browser/ui/views/accelerator_table.h'], | 4598 ['include', '^browser/ui/views/accelerator_table.h'], |
4599 ] | 4599 ] |
4600 }], | 4600 }], |
4601 ['OS=="linux" and toolkit_views==1',{ | 4601 ['OS=="linux" and toolkit_views==1',{ |
4602 'dependencies': [ | 4602 'dependencies': [ |
4603 '../views/views.gyp:views', | 4603 '../ui/views/views.gyp:views', |
4604 ], | 4604 ], |
4605 'include_dirs': [ | 4605 'include_dirs': [ |
4606 '<(INTERMEDIATE_DIR)', | 4606 '<(INTERMEDIATE_DIR)', |
4607 '<(INTERMEDIATE_DIR)/chrome', | 4607 '<(INTERMEDIATE_DIR)/chrome', |
4608 ], | 4608 ], |
4609 'sources/': [ | 4609 'sources/': [ |
4610 ['include', '^browser/extensions/'], | 4610 ['include', '^browser/extensions/'], |
4611 # This exclude duplicates the one just above because of the | 4611 # This exclude duplicates the one just above because of the |
4612 # order of evaluation of the 'sources/' rule above, the | 4612 # order of evaluation of the 'sources/' rule above, the |
4613 # conditions, and this 'sources/' rule. | 4613 # conditions, and this 'sources/' rule. |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5248 'type': 'static_library', | 5248 'type': 'static_library', |
5249 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], | 5249 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], |
5250 'variables': { | 5250 'variables': { |
5251 'proto_in_dir': 'browser/history', | 5251 'proto_in_dir': 'browser/history', |
5252 'proto_out_dir': 'chrome/browser/history', | 5252 'proto_out_dir': 'chrome/browser/history', |
5253 }, | 5253 }, |
5254 'includes': [ '../build/protoc.gypi' ] | 5254 'includes': [ '../build/protoc.gypi' ] |
5255 }, | 5255 }, |
5256 ], | 5256 ], |
5257 } | 5257 } |
OLD | NEW |