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

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

Issue 20131: Create AudioRendererHost in BrowserRenderProcessHost and hook with ResourceMessageFilter (Closed)
Patch Set: mac project files 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
« no previous file with comments | « no previous file | chrome/browser/renderer_host/audio_renderer_host.h » ('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) 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',
11 '$CHROME_DIR/third_party/wtl/using_wtl.scons', 11 '$CHROME_DIR/third_party/wtl/using_wtl.scons',
12 '$GOOGLE_UPDATE_DIR/using_google_update.scons', 12 '$GOOGLE_UPDATE_DIR/using_google_update.scons',
13 '$GRIT_DIR/build/using_generated_resources.scons', 13 '$GRIT_DIR/build/using_generated_resources.scons',
14 '$GTEST_DIR/../using_gtest.scons', 14 '$GTEST_DIR/../using_gtest.scons',
15 '$ICU38_DIR/using_icu38.scons', 15 '$ICU38_DIR/using_icu38.scons',
16 '$LIBPNG_DIR/using_libpng.scons', 16 '$LIBPNG_DIR/using_libpng.scons',
17 '$LIBXML_DIR/using_libxml.scons', 17 '$LIBXML_DIR/using_libxml.scons',
18 '$MEDIA_DIR/using_media.scons',
18 '$NPAPI_DIR/using_npapi.scons', 19 '$NPAPI_DIR/using_npapi.scons',
19 '$SKIA_DIR/using_skia.scons', 20 '$SKIA_DIR/using_skia.scons',
20 '$ZLIB_DIR/using_zlib.scons', 21 '$ZLIB_DIR/using_zlib.scons',
21 ], {'env':env}) 22 ], {'env':env})
22 23
23 env.Prepend( 24 env.Prepend(
24 CPPPATH = [ 25 CPPPATH = [
25 '$CHROME_DIR/app', 26 '$CHROME_DIR/app',
26 '$CHROME_SRC_DIR', 27 '$CHROME_SRC_DIR',
27 # To get the #include of history_indexer.h, 28 # To get the #include of history_indexer.h,
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 'extensions/extension.h', 502 'extensions/extension.h',
502 'extensions/extension_protocols.h', 503 'extensions/extension_protocols.h',
503 'extensions/extensions_service.cc', 504 'extensions/extensions_service.cc',
504 'extensions/extensions_service.h', 505 'extensions/extensions_service.h',
505 'extensions/user_script_master.cc', 506 'extensions/user_script_master.cc',
506 'extensions/user_script_master.h', 507 'extensions/user_script_master.h',
507 ]), 508 ]),
508 MSVSFilter('Renderer Host', [ 509 MSVSFilter('Renderer Host', [
509 'renderer_host/async_resource_handler.cc', 510 'renderer_host/async_resource_handler.cc',
510 'renderer_host/async_resource_handler.h', 511 'renderer_host/async_resource_handler.h',
512 'renderer_host/audio_renderer_host.cc',
513 'renderer_host/audio_renderer_host.h',
511 'renderer_host/backing_store.h', 514 'renderer_host/backing_store.h',
512 'renderer_host/backing_store.cc', 515 'renderer_host/backing_store.cc',
513 'renderer_host/backing_store_win.cc', 516 'renderer_host/backing_store_win.cc',
514 'renderer_host/browser_render_process_host.cc', 517 'renderer_host/browser_render_process_host.cc',
515 'renderer_host/browser_render_process_host.h', 518 'renderer_host/browser_render_process_host.h',
516 'renderer_host/buffered_resource_handler.cc', 519 'renderer_host/buffered_resource_handler.cc',
517 'renderer_host/buffered_resource_handler.h', 520 'renderer_host/buffered_resource_handler.h',
518 'renderer_host/cross_site_resource_handler.cc', 521 'renderer_host/cross_site_resource_handler.cc',
519 'renderer_host/cross_site_resource_handler.h', 522 'renderer_host/cross_site_resource_handler.h',
520 'renderer_host/download_resource_handler.cc', 523 'renderer_host/download_resource_handler.cc',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 918
916 xmldoc_tool_list = [ 919 xmldoc_tool_list = [
917 MSVSTool('VCCLCompilerTool', 920 MSVSTool('VCCLCompilerTool',
918 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 921 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
919 ObjectFile='$(IntDir)/$(InputName)1.obj'), 922 ObjectFile='$(IntDir)/$(InputName)1.obj'),
920 ] 923 ]
921 924
922 for filename in xmldoc_files: 925 for filename in xmldoc_files:
923 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 926 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
924 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 927 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/audio_renderer_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698