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

Side by Side Diff: content/content_shell.gypi

Issue 1116693002: [NOT FOR REVIEW] Significantly simplify the PlatformNotificationService //content API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 '../storage/storage_browser.gyp:storage', 62 '../storage/storage_browser.gyp:storage',
63 '../third_party/WebKit/public/blink.gyp:blink', 63 '../third_party/WebKit/public/blink.gyp:blink',
64 '../third_party/WebKit/public/blink.gyp:blink_test_support', 64 '../third_party/WebKit/public/blink.gyp:blink_test_support',
65 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 65 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
66 '../ui/base/ui_base.gyp:ui_base', 66 '../ui/base/ui_base.gyp:ui_base',
67 '../ui/events/events.gyp:events_base', 67 '../ui/events/events.gyp:events_base',
68 '../ui/gfx/gfx.gyp:gfx', 68 '../ui/gfx/gfx.gyp:gfx',
69 '../ui/gfx/gfx.gyp:gfx_geometry', 69 '../ui/gfx/gfx.gyp:gfx_geometry',
70 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 70 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
71 '../ui/gl/gl.gyp:gl', 71 '../ui/gl/gl.gyp:gl',
72 '../ui/message_center/message_center.gyp:message_center',
72 '../url/url.gyp:url_lib', 73 '../url/url.gyp:url_lib',
73 '../v8/tools/gyp/v8.gyp:v8', 74 '../v8/tools/gyp/v8.gyp:v8',
74 ], 75 ],
75 'include_dirs': [ 76 'include_dirs': [
76 '..', 77 '..',
77 ], 78 ],
78 'sources': [ 79 'sources': [
79 # Note: sources list duplicated in GN build. 80 # Note: sources list duplicated in GN build.
80 'shell/android/shell_jni_registrar.cc', 81 'shell/android/shell_jni_registrar.cc',
81 'shell/android/shell_jni_registrar.h', 82 'shell/android/shell_jni_registrar.h',
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1167 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1167 '--destination_dir', '<(dest_dir)', 1168 '--destination_dir', '<(dest_dir)',
1168 ], 1169 ],
1169 }, 1170 },
1170 ], 1171 ],
1171 }, 1172 },
1172 ], 1173 ],
1173 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1174 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1174 ] 1175 ]
1175 } 1176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698