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

Side by Side Diff: chrome/browser/browser.scons

Issue 19704: Introduce UrlPattern. (Closed)
Patch Set: more feedback Created 11 years, 10 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) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 Import('env') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.SConscript([ 9 env.SConscript([
10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', 10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 MSVSFilter('Autofill', [ 501 MSVSFilter('Autofill', [
502 'autofill_manager.cc', 502 'autofill_manager.cc',
503 'autofill_manager.h', 503 'autofill_manager.h',
504 ]), 504 ]),
505 MSVSFilter('Extensions', [ 505 MSVSFilter('Extensions', [
506 'extensions/extension.cc', 506 'extensions/extension.cc',
507 'extensions/extension.h', 507 'extensions/extension.h',
508 'extensions/extension_protocols.h', 508 'extensions/extension_protocols.h',
509 'extensions/extensions_service.cc', 509 'extensions/extensions_service.cc',
510 'extensions/extensions_service.h', 510 'extensions/extensions_service.h',
511 'extensions/url_pattern.h',
512 'extensions/url_pattern.cc',
511 'extensions/user_script_master.cc', 513 'extensions/user_script_master.cc',
512 'extensions/user_script_master.h', 514 'extensions/user_script_master.h',
513 ]), 515 ]),
514 MSVSFilter('Renderer Host', [ 516 MSVSFilter('Renderer Host', [
515 'renderer_host/async_resource_handler.cc', 517 'renderer_host/async_resource_handler.cc',
516 'renderer_host/async_resource_handler.h', 518 'renderer_host/async_resource_handler.h',
517 'renderer_host/browser_render_process_host.cc', 519 'renderer_host/browser_render_process_host.cc',
518 'renderer_host/browser_render_process_host.h', 520 'renderer_host/browser_render_process_host.h',
519 'renderer_host/buffered_resource_handler.cc', 521 'renderer_host/buffered_resource_handler.cc',
520 'renderer_host/buffered_resource_handler.h', 522 'renderer_host/buffered_resource_handler.h',
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 939
938 xmldoc_tool_list = [ 940 xmldoc_tool_list = [
939 MSVSTool('VCCLCompilerTool', 941 MSVSTool('VCCLCompilerTool',
940 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 942 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
941 ObjectFile='$(IntDir)/$(InputName)1.obj'), 943 ObjectFile='$(IntDir)/$(InputName)1.obj'),
942 ] 944 ]
943 945
944 for filename in xmldoc_files: 946 for filename in xmldoc_files:
945 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 947 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
946 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 948 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698