Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: extensions/extensions.gyp

Issue 1920853002: Drop support for Compact Language Detector v1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Preserve yfriedman@ comment in chrome/android/chrome_apk.gyp Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/BUILD.gn ('k') | extensions/shell/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'dependencies': [ 255 'dependencies': [
256 '../base/base.gyp:base', 256 '../base/base.gyp:base',
257 '../components/components.gyp:pref_registry_test_support', 257 '../components/components.gyp:pref_registry_test_support',
258 '../components/components.gyp:user_prefs', 258 '../components/components.gyp:user_prefs',
259 '../components/prefs/prefs.gyp:prefs_test_support', 259 '../components/prefs/prefs.gyp:prefs_test_support',
260 '../content/content.gyp:content_browser', 260 '../content/content.gyp:content_browser',
261 '../content/content.gyp:content_common', 261 '../content/content.gyp:content_common',
262 '../content/content_shell_and_tests.gyp:test_support_content', 262 '../content/content_shell_and_tests.gyp:test_support_content',
263 '../net/net.gyp:net_test_support', 263 '../net/net.gyp:net_test_support',
264 '../testing/gtest.gyp:gtest', 264 '../testing/gtest.gyp:gtest',
265 '../third_party/cld_2/cld_2.gyp:cld2_static',
265 'browser/api/api_registration.gyp:extensions_api_registration', 266 'browser/api/api_registration.gyp:extensions_api_registration',
266 'common/api/api.gyp:cast_channel_proto', 267 'common/api/api.gyp:cast_channel_proto',
267 'common/api/api.gyp:extensions_api', 268 'common/api/api.gyp:extensions_api',
268 'extensions_browser', 269 'extensions_browser',
269 'extensions_common', 270 'extensions_common',
270 'extensions_resources.gyp:extensions_resources', 271 'extensions_resources.gyp:extensions_resources',
271 ], 272 ],
272 'include_dirs': [ 273 'include_dirs': [
273 '..', 274 '..',
274 '<(SHARED_INTERMEDIATE_DIR)', 275 '<(SHARED_INTERMEDIATE_DIR)',
275 ], 276 ],
276 'sources': [ 277 'sources': [
277 '<@(extensions_test_support_sources)', 278 '<@(extensions_test_support_sources)',
278 ], 279 ],
279 # Disable c4267 warnings until we fix size_t to int truncations. 280 # Disable c4267 warnings until we fix size_t to int truncations.
280 'msvs_disabled_warnings': [ 4267, ], 281 'msvs_disabled_warnings': [ 4267, ],
281 'conditions': [
282 [ 'cld_version==2', {
283 'dependencies': [
284 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
285 }],
286 ],
287 }, 282 },
288 { 283 {
289 # The pak file generated by this target is intended to be shared by 284 # The pak file generated by this target is intended to be shared by
290 # both shell and test targets. It was combined because it might help a 285 # both shell and test targets. It was combined because it might help a
291 # little bit with build time by avoiding a repack step (one instead of 286 # little bit with build time by avoiding a repack step (one instead of
292 # two). 287 # two).
293 'target_name': 'extensions_shell_and_test_pak', 288 'target_name': 'extensions_shell_and_test_pak',
294 'type': 'none', 289 'type': 'none',
295 'dependencies': [ 290 'dependencies': [
296 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', 291 '../content/browser/devtools/devtools_resources.gyp:devtools_resources',
(...skipping 27 matching lines...) Expand all
324 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 319 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
325 ], 320 ],
326 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 321 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
327 }, 322 },
328 'includes': [ '../build/repack_action.gypi' ], 323 'includes': [ '../build/repack_action.gypi' ],
329 }, 324 },
330 ], 325 ],
331 }, 326 },
332 ] 327 ]
333 } 328 }
OLDNEW
« no previous file with comments | « extensions/BUILD.gn ('k') | extensions/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698