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

Side by Side Diff: chrome/chrome_common.gypi

Issue 14089011: Roll the DEPS for google-url. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort chrome_tests.gypi Created 7 years, 8 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 | « chrome/chrome_browser_ui_views.gyp ('k') | chrome/chrome_tests.gypi » ('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 (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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 14 matching lines...) Expand all
25 # shared with the 64-bit target, but it does not work due to a gyp 25 # shared with the 64-bit target, but it does not work due to a gyp
26 # issue. 26 # issue.
27 'common_net', 27 'common_net',
28 'common_version', 28 'common_version',
29 'installer_util', 29 'installer_util',
30 'metrics_proto', 30 'metrics_proto',
31 '<(DEPTH)/base/base.gyp:base', 31 '<(DEPTH)/base/base.gyp:base',
32 '<(DEPTH)/base/base.gyp:base_i18n', 32 '<(DEPTH)/base/base.gyp:base_i18n',
33 '<(DEPTH)/base/base.gyp:base_prefs', 33 '<(DEPTH)/base/base.gyp:base_prefs',
34 '<(DEPTH)/base/base.gyp:base_static', 34 '<(DEPTH)/base/base.gyp:base_static',
35 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 35 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
37 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
38 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources', 37 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources',
39 '<(DEPTH)/chrome/common_constants.gyp:common_constants', 38 '<(DEPTH)/chrome/common_constants.gyp:common_constants',
40 '<(DEPTH)/components/components.gyp:visitedlink_common', 39 '<(DEPTH)/components/components.gyp:visitedlink_common',
41 '<(DEPTH)/components/components.gyp:zip', 40 '<(DEPTH)/components/components.gyp:zip',
42 '<(DEPTH)/content/content.gyp:content_common', 41 '<(DEPTH)/content/content.gyp:content_common',
43 '<(DEPTH)/net/net.gyp:net', 42 '<(DEPTH)/net/net.gyp:net',
44 '<(DEPTH)/skia/skia.gyp:skia', 43 '<(DEPTH)/skia/skia.gyp:skia',
45 '<(DEPTH)/third_party/bzip2/bzip2.gyp:bzip2', 44 '<(DEPTH)/third_party/bzip2/bzip2.gyp:bzip2',
46 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 45 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
47 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 46 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
48 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 47 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
49 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', 48 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
50 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 49 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
51 '<(DEPTH)/ui/ui.gyp:ui_resources', 50 '<(DEPTH)/ui/ui.gyp:ui_resources',
51 '<(DEPTH)/url/url.gyp:url',
52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent', 52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent',
53 ], 53 ],
54 'sources': [ 54 'sources': [
55 '../apps/app_shim/app_shim_messages.h', 55 '../apps/app_shim/app_shim_messages.h',
56 '../extensions/common/constants.cc', 56 '../extensions/common/constants.cc',
57 '../extensions/common/constants.h', 57 '../extensions/common/constants.h',
58 '../extensions/common/crx_file.cc', 58 '../extensions/common/crx_file.cc',
59 '../extensions/common/crx_file.h', 59 '../extensions/common/crx_file.h',
60 '../extensions/common/draggable_region.cc', 60 '../extensions/common/draggable_region.cc',
61 '../extensions/common/draggable_region.h', 61 '../extensions/common/draggable_region.h',
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'common/metrics/proto/user_action_event.proto', 732 'common/metrics/proto/user_action_event.proto',
733 ], 733 ],
734 'variables': { 734 'variables': {
735 'proto_in_dir': 'common/metrics/proto', 735 'proto_in_dir': 'common/metrics/proto',
736 'proto_out_dir': 'chrome/common/metrics/proto', 736 'proto_out_dir': 'chrome/common/metrics/proto',
737 }, 737 },
738 'includes': [ '../build/protoc.gypi' ], 738 'includes': [ '../build/protoc.gypi' ],
739 }, 739 },
740 ], 740 ],
741 } 741 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui_views.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698