OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'includes': [ | 6 'includes': [ |
7 'extensions.gypi', | 7 'extensions.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 ], | 116 ], |
117 }], | 117 }], |
118 ], | 118 ], |
119 }, | 119 }, |
120 { | 120 { |
121 # GN version: //extensions/browser | 121 # GN version: //extensions/browser |
122 'target_name': 'extensions_browser', | 122 'target_name': 'extensions_browser', |
123 'type': 'static_library', | 123 'type': 'static_library', |
124 'dependencies': [ | 124 'dependencies': [ |
125 '../base/base.gyp:base', | 125 '../base/base.gyp:base', |
126 '../base/base.gyp:base_i18n', | |
127 '../third_party/icu/icu.gyp:icuuc', | |
128 '../third_party/icu/icu.gyp:icui18n', | |
jungshik at Google
2015/08/01 14:00:58
Removing two icu lines above still works, but I'm
Ryan Sleevi
2015/08/03 08:01:41
Yeah, since none of the unittests explicitly use I
| |
126 '../base/base.gyp:base_prefs', | 129 '../base/base.gyp:base_prefs', |
127 '../components/components.gyp:browsing_data', | 130 '../components/components.gyp:browsing_data', |
128 '../components/components.gyp:device_event_log_component', | 131 '../components/components.gyp:device_event_log_component', |
129 '../components/components.gyp:guest_view_browser', | 132 '../components/components.gyp:guest_view_browser', |
130 '../components/components.gyp:keyed_service_content', | 133 '../components/components.gyp:keyed_service_content', |
131 '../components/components.gyp:keyed_service_core', | 134 '../components/components.gyp:keyed_service_core', |
132 '../components/components.gyp:onc_component', | 135 '../components/components.gyp:onc_component', |
133 '../components/components.gyp:pref_registry', | 136 '../components/components.gyp:pref_registry', |
134 '../components/components.gyp:sessions_content', | 137 '../components/components.gyp:sessions_content', |
135 '../components/components.gyp:storage_monitor', | 138 '../components/components.gyp:storage_monitor', |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 313 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
311 ], | 314 ], |
312 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 315 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
313 }, | 316 }, |
314 'includes': [ '../build/repack_action.gypi' ], | 317 'includes': [ '../build/repack_action.gypi' ], |
315 }, | 318 }, |
316 ], | 319 ], |
317 }, | 320 }, |
318 ] | 321 ] |
319 } | 322 } |
OLD | NEW |