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

Side by Side Diff: chrome/chrome_common.gypi

Issue 464883002: Credential Manager: Renderer-side implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | chrome/renderer/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 '../apps/app_shim/app_shim_launch.h', 9 '../apps/app_shim/app_shim_launch.h',
10 '../apps/app_shim/app_shim_messages.h', 10 '../apps/app_shim/app_shim_messages.h',
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 ], 361 ],
362 }], 362 }],
363 ['OS=="mac"', { 363 ['OS=="mac"', {
364 'sources': [ '<@(chrome_common_mac_sources)' ], 364 'sources': [ '<@(chrome_common_mac_sources)' ],
365 }], 365 }],
366 ['OS != "ios"', { 366 ['OS != "ios"', {
367 'dependencies': [ 367 'dependencies': [
368 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', 368 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api',
369 '<(DEPTH)/components/components.gyp:autofill_core_common', 369 '<(DEPTH)/components/components.gyp:autofill_core_common',
370 '<(DEPTH)/components/components.gyp:autofill_content_common', 370 '<(DEPTH)/components/components.gyp:autofill_content_common',
371 '<(DEPTH)/components/components.gyp:password_manager_core_common', 371 '<(DEPTH)/components/components.gyp:password_manager_core_common',
Ilya Sherman 2014/08/19 23:55:51 Hmm, if iOS already doesn't use the password manag
vabr (Chromium) 2014/08/20 10:57:47 Yeah, I actually don't know why all the *_core_com
Mike West 2014/08/20 13:17:18 Let's do that in a separate CL? :)
Mike West 2014/08/20 13:17:18 1. Honestly, it's a little bit unclear how we'd go
vabr (Chromium) 2014/08/20 14:40:34 SGTM.
372 '<(DEPTH)/components/components.gyp:password_manager_content_common' ,
372 '<(DEPTH)/components/components.gyp:signin_core_common', 373 '<(DEPTH)/components/components.gyp:signin_core_common',
373 '<(DEPTH)/components/components.gyp:translate_content_common', 374 '<(DEPTH)/components/components.gyp:translate_content_common',
374 '<(DEPTH)/components/components.gyp:visitedlink_common', 375 '<(DEPTH)/components/components.gyp:visitedlink_common',
375 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', 376 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api',
376 '<(DEPTH)/extensions/extensions.gyp:extensions_common', 377 '<(DEPTH)/extensions/extensions.gyp:extensions_common',
377 '<(DEPTH)/ipc/ipc.gyp:ipc', 378 '<(DEPTH)/ipc/ipc.gyp:ipc',
378 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ', 379 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ',
379 '<(DEPTH)/third_party/re2/re2.gyp:re2', 380 '<(DEPTH)/third_party/re2/re2.gyp:re2',
380 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h', 381 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h',
381 ], 382 ],
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 'common/safe_browsing/csd.proto' 695 'common/safe_browsing/csd.proto'
695 ], 696 ],
696 'variables': { 697 'variables': {
697 'proto_in_dir': 'common/safe_browsing', 698 'proto_in_dir': 'common/safe_browsing',
698 'proto_out_dir': 'chrome/common/safe_browsing', 699 'proto_out_dir': 'chrome/common/safe_browsing',
699 }, 700 },
700 'includes': [ '../build/protoc.gypi' ], 701 'includes': [ '../build/protoc.gypi' ],
701 }, 702 },
702 ], 703 ],
703 } 704 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | chrome/renderer/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698