| OLD | NEW |
| 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_extensions', | 8 'target_name': 'browser_extensions', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 'browser/extensions/webstore_inline_installer.cc', | 509 'browser/extensions/webstore_inline_installer.cc', |
| 510 'browser/extensions/webstore_inline_installer.h', | 510 'browser/extensions/webstore_inline_installer.h', |
| 511 'browser/extensions/webstore_install_helper.cc', | 511 'browser/extensions/webstore_install_helper.cc', |
| 512 'browser/extensions/webstore_install_helper.h', | 512 'browser/extensions/webstore_install_helper.h', |
| 513 'browser/extensions/webstore_installer.cc', | 513 'browser/extensions/webstore_installer.cc', |
| 514 'browser/extensions/webstore_installer.h', | 514 'browser/extensions/webstore_installer.h', |
| 515 'browser/extensions/window_controller.cc', | 515 'browser/extensions/window_controller.cc', |
| 516 'browser/extensions/window_controller.h', | 516 'browser/extensions/window_controller.h', |
| 517 'browser/extensions/window_controller_list.cc', | 517 'browser/extensions/window_controller_list.cc', |
| 518 'browser/extensions/window_controller_list.h', | 518 'browser/extensions/window_controller_list.h', |
| 519 'browser/extensions/window_controller_list_observer.h', |
| 520 'browser/extensions/window_event_router.cc', |
| 521 'browser/extensions/window_event_router.h', |
| 519 ], | 522 ], |
| 520 'conditions': [ | 523 'conditions': [ |
| 521 ['chromeos==0', { | 524 ['chromeos==0', { |
| 522 'sources/': [ | 525 'sources/': [ |
| 523 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.cc'], | 526 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.cc'], |
| 524 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.h'], | 527 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.h'], |
| 525 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.cc
'], | 528 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.cc
'], |
| 526 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.h'
], | 529 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.h'
], |
| 527 ['exclude', 'browser/extensions/extension_input_ime_api.cc'], | 530 ['exclude', 'browser/extensions/extension_input_ime_api.cc'], |
| 528 ['exclude', 'browser/extensions/extension_input_ime_api.h'], | 531 ['exclude', 'browser/extensions/extension_input_ime_api.h'], |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 ], | 748 ], |
| 746 'sources': [ | 749 'sources': [ |
| 747 'browser/extensions/app_host_stub_main.cc', | 750 'browser/extensions/app_host_stub_main.cc', |
| 748 ], | 751 ], |
| 749 }, | 752 }, |
| 750 ], | 753 ], |
| 751 }, ], # 'OS=="win"' | 754 }, ], # 'OS=="win"' |
| 752 ], # 'conditions' | 755 ], # 'conditions' |
| 753 } | 756 } |
| 754 | 757 |
| OLD | NEW |