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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1088007: Add an initial implementation of net-internals inspector in javascript.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more build file Created 10 years, 9 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/browser/resources/net_internals/util.js ('k') | chrome/chrome_dll.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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
11 'dependencies': [ 11 'dependencies': [
12 'common', 12 'common',
13 'chrome_resources', 13 'chrome_resources',
14 'chrome_strings', 14 'chrome_strings',
15 'component_extensions', 15 'component_extensions',
16 'net_internals_resources',
16 'platform_locale_settings', 17 'platform_locale_settings',
17 'sync_proto', 18 'sync_proto',
18 'theme_resources', 19 'theme_resources',
19 '../app/app.gyp:app_resources', 20 '../app/app.gyp:app_resources',
20 '../app/app.gyp:app_strings', 21 '../app/app.gyp:app_strings',
21 '../media/media.gyp:media', 22 '../media/media.gyp:media',
22 '../printing/printing.gyp:printing', 23 '../printing/printing.gyp:printing',
23 '../skia/skia.gyp:skia', 24 '../skia/skia.gyp:skia',
24 '../third_party/bzip2/bzip2.gyp:bzip2', 25 '../third_party/bzip2/bzip2.gyp:bzip2',
25 '../third_party/expat/expat.gyp:expat', 26 '../third_party/expat/expat.gyp:expat',
(...skipping 3068 matching lines...) Expand 10 before | Expand all | Expand 10 after
3094 'browser/resources/bookmark_manager/images/bookmarks_section.png', 3095 'browser/resources/bookmark_manager/images/bookmarks_section.png',
3095 'browser/resources/bookmark_manager/images/default_favicon.png', 3096 'browser/resources/bookmark_manager/images/default_favicon.png',
3096 'browser/resources/bookmark_manager/images/folder_closed.png', 3097 'browser/resources/bookmark_manager/images/folder_closed.png',
3097 'browser/resources/bookmark_manager/images/folder_closed_rtl.png', 3098 'browser/resources/bookmark_manager/images/folder_closed_rtl.png',
3098 'browser/resources/bookmark_manager/images/folder_open.png', 3099 'browser/resources/bookmark_manager/images/folder_open.png',
3099 'browser/resources/bookmark_manager/images/folder_open_rtl.png', 3100 'browser/resources/bookmark_manager/images/folder_open_rtl.png',
3100 ] 3101 ]
3101 }, 3102 },
3102 ] 3103 ]
3103 }, 3104 },
3105 {
3106 'target_name': 'net_internals_resources',
3107 'type': 'none',
3108 # TODO(eroman): Once the msvs port supports it, change this to recursively
3109 # copy the entire directory instead of listing the files.
3110 # http://code.google.com/p/gyp/issues/detail?id=143.
3111 'copies': [
3112 {
3113 'destination': '<(PRODUCT_DIR)/resources/net_internals',
3114 'files': [
3115 'browser/resources/net_internals/detailsview.js',
3116 'browser/resources/net_internals/index.html',
3117 'browser/resources/net_internals/layoutmanager.js',
3118 'browser/resources/net_internals/loggrouper.js',
3119 'browser/resources/net_internals/logviewpainter.js',
3120 'browser/resources/net_internals/main.css',
3121 'browser/resources/net_internals/main.js',
3122 'browser/resources/net_internals/requestsview.js',
3123 'browser/resources/net_internals/sourceentry.js',
3124 'browser/resources/net_internals/timelineviewpainter.js',
3125 'browser/resources/net_internals/util.js',
3126 ]
3127 },
3128 ]
3129 },
3104 ], 3130 ],
3105 } 3131 }
3106 3132
3107 # Local Variables: 3133 # Local Variables:
3108 # tab-width:2 3134 # tab-width:2
3109 # indent-tabs-mode:nil 3135 # indent-tabs-mode:nil
3110 # End: 3136 # End:
3111 # vim: set expandtab tabstop=2 shiftwidth=2: 3137 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/util.js ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698