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 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2752 'sources/': [ | 2752 'sources/': [ |
2753 # Exclude all of rlz. | 2753 # Exclude all of rlz. |
2754 ['exclude', '^browser/rlz/'], | 2754 ['exclude', '^browser/rlz/'], |
2755 ], | 2755 ], |
2756 }], | 2756 }], |
2757 ['OS=="win"', { | 2757 ['OS=="win"', { |
2758 'include_dirs': [ | 2758 'include_dirs': [ |
2759 '<(DEPTH)/third_party/wtl/include', | 2759 '<(DEPTH)/third_party/wtl/include', |
2760 ], | 2760 ], |
2761 'dependencies': [ | 2761 'dependencies': [ |
2762 'chrome_process_finder', | |
2762 'installer_util_strings', | 2763 'installer_util_strings', |
2763 '../google_update/google_update.gyp:google_update', | 2764 '../google_update/google_update.gyp:google_update', |
2764 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 2765 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
2765 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 2766 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
2766 '../ui/views/controls/webview/webview.gyp:webview', | 2767 '../ui/views/controls/webview/webview.gyp:webview', |
2767 '../ui/views/views.gyp:views', | 2768 '../ui/views/views.gyp:views', |
2768 '../win8/win8.gyp:win8_util', | 2769 '../win8/win8.gyp:win8_util', |
2769 ], | 2770 ], |
2770 'export_dependent_settings': [ | 2771 'export_dependent_settings': [ |
2771 '../ui/views/controls/webview/webview.gyp:webview', | 2772 '../ui/views/controls/webview/webview.gyp:webview', |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3049 ], | 3050 ], |
3050 'variables': { | 3051 'variables': { |
3051 'package_name': 'org/chromium/chrome/browser/ui/toolbar', | 3052 'package_name': 'org/chromium/chrome/browser/ui/toolbar', |
3052 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], | 3053 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], |
3053 }, | 3054 }, |
3054 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3055 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3055 }, | 3056 }, |
3056 ], | 3057 ], |
3057 }, | 3058 }, |
3058 ], | 3059 ], |
3060 ['OS=="win"', { | |
3061 'targets': [ | |
3062 { | |
3063 'target_name': 'chrome_process_finder', | |
3064 'type': 'static_library', | |
3065 'include_dirs': [ | |
3066 '..', | |
3067 ], | |
3068 'dependencies': [ | |
3069 '../net/net.gyp:net', | |
3070 '<(DEPTH)/chrome/chrome.gyp:metro_utils', | |
3071 ], | |
3072 'sources': [ | |
3073 'browser/chrome_process_finder_win.cc', | |
grt (UTC plus 2)
2013/04/30 14:54:23
chrome_process_finder_win.cc includes chrome/commo
koz (OOO until 15th September)
2013/05/09 01:47:42
Done.
| |
3074 'browser/chrome_process_finder_win.h', | |
3075 ], | |
3076 }, | |
3077 ], | |
3078 }, | |
3079 ], | |
3059 ], | 3080 ], |
3060 } | 3081 } |
OLD | NEW |