OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 2961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2972 'browser/importer/nss_decryptor.cc', | 2972 'browser/importer/nss_decryptor.cc', |
2973 'browser/importer/nss_decryptor_system_nss.cc', | 2973 'browser/importer/nss_decryptor_system_nss.cc', |
2974 'browser/importer/nss_decryptor_system_nss.h', | 2974 'browser/importer/nss_decryptor_system_nss.h', |
2975 ] | 2975 ] |
2976 }], | 2976 }], |
2977 ['enable_app_list==1', { | 2977 ['enable_app_list==1', { |
2978 'dependencies': [ | 2978 'dependencies': [ |
2979 '../ui/app_list/app_list.gyp:app_list', | 2979 '../ui/app_list/app_list.gyp:app_list', |
2980 ] | 2980 ] |
2981 }], | 2981 }], |
| 2982 ['enable_message_center==1', { |
| 2983 'dependencies': [ |
| 2984 '../ui/message_center/message_center.gyp:message_center', |
| 2985 ], |
| 2986 }, { # enable_message_center==0 |
| 2987 'sources!': [ |
| 2988 'browser/notifications/message_center_notification_manager.cc', |
| 2989 'browser/notifications/message_center_notification_manager.h', |
| 2990 ], |
| 2991 }], |
2982 ], | 2992 ], |
2983 'target_conditions': [ | 2993 'target_conditions': [ |
2984 # Need 'target_conditions' to override default filename_rules to include | 2994 # Need 'target_conditions' to override default filename_rules to include |
2985 # the files on Android. | 2995 # the files on Android. |
2986 ['OS=="android"', { | 2996 ['OS=="android"', { |
2987 'sources/': [ | 2997 'sources/': [ |
2988 ['include', '^app/breakpad_linux\\.cc$'], | 2998 ['include', '^app/breakpad_linux\\.cc$'], |
2989 ['include', '^browser/crash_handler_host_linux\\.cc$'], | 2999 ['include', '^browser/crash_handler_host_linux\\.cc$'], |
2990 ['include', '^browser/crash_handler_host_linux_stub\\.cc$'], | 3000 ['include', '^browser/crash_handler_host_linux_stub\\.cc$'], |
2991 ], | 3001 ], |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3114 'variables': { | 3124 'variables': { |
3115 'jni_gen_dir': 'chrome', | 3125 'jni_gen_dir': 'chrome', |
3116 }, | 3126 }, |
3117 'includes': [ '../build/jni_generator.gypi' ], | 3127 'includes': [ '../build/jni_generator.gypi' ], |
3118 }, | 3128 }, |
3119 ], | 3129 ], |
3120 }, | 3130 }, |
3121 ], | 3131 ], |
3122 ], | 3132 ], |
3123 } | 3133 } |
OLD | NEW |