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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 'browser/extensions/user_script_master.cc', | 433 'browser/extensions/user_script_master.cc', |
434 'browser/extensions/user_script_master.h', | 434 'browser/extensions/user_script_master.h', |
435 'browser/extensions/webstore_inline_installer.cc', | 435 'browser/extensions/webstore_inline_installer.cc', |
436 'browser/extensions/webstore_inline_installer.h', | 436 'browser/extensions/webstore_inline_installer.h', |
437 'browser/extensions/webstore_install_helper.cc', | 437 'browser/extensions/webstore_install_helper.cc', |
438 'browser/extensions/webstore_install_helper.h', | 438 'browser/extensions/webstore_install_helper.h', |
439 'browser/extensions/webstore_installer.cc', | 439 'browser/extensions/webstore_installer.cc', |
440 'browser/extensions/webstore_installer.h', | 440 'browser/extensions/webstore_installer.h', |
441 ], | 441 ], |
442 'conditions': [ | 442 'conditions': [ |
| 443 ['enable_task_manager==0', { |
| 444 'sources!': [ |
| 445 'browser/extensions/extension_processes_api.cc', |
| 446 ], |
| 447 }], |
443 ['chromeos==0', { | 448 ['chromeos==0', { |
444 'sources/': [ | 449 'sources/': [ |
445 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.cc'], | 450 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.cc'], |
446 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.h'], | 451 ['exclude', 'browser/extensions/api/terminal/terminal_extension_help
er.h'], |
447 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.cc
'], | 452 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.cc
'], |
448 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.h'
], | 453 ['exclude', 'browser/extensions/api/terminal/terminal_private_api.h'
], |
449 ['exclude', 'browser/extensions/extension_input_ime_api.cc'], | 454 ['exclude', 'browser/extensions/extension_input_ime_api.cc'], |
450 ['exclude', 'browser/extensions/extension_input_ime_api.h'], | 455 ['exclude', 'browser/extensions/extension_input_ime_api.h'], |
451 ['exclude', 'browser/extensions/extension_input_method_api.cc'], | 456 ['exclude', 'browser/extensions/extension_input_method_api.cc'], |
452 ['exclude', 'browser/extensions/extension_input_method_api.h'], | 457 ['exclude', 'browser/extensions/extension_input_method_api.h'], |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 }], | 568 }], |
564 ], | 569 ], |
565 }], | 570 }], |
566 ], | 571 ], |
567 }], | 572 }], |
568 ], | 573 ], |
569 }, | 574 }, |
570 ], | 575 ], |
571 } | 576 } |
572 | 577 |
OLD | NEW |