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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9158005: RFC: Add an interface for having the browser open a pnacl support file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add a test, do some tweaks. Created 8 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 | Annotate | Revision Log
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 4312 matching lines...) Expand 10 before | Expand all | Expand 10 after
4323 ], 4323 ],
4324 'conditions': [ 4324 'conditions': [
4325 ['disable_nacl==0', { 4325 ['disable_nacl==0', {
4326 'sources': [ 4326 'sources': [
4327 'browser/nacl_host/nacl_broker_host_win.cc', 4327 'browser/nacl_host/nacl_broker_host_win.cc',
4328 'browser/nacl_host/nacl_broker_host_win.h', 4328 'browser/nacl_host/nacl_broker_host_win.h',
4329 'browser/nacl_host/nacl_broker_service_win.cc', 4329 'browser/nacl_host/nacl_broker_service_win.cc',
4330 'browser/nacl_host/nacl_broker_service_win.h', 4330 'browser/nacl_host/nacl_broker_service_win.h',
4331 'browser/nacl_host/nacl_process_host.cc', 4331 'browser/nacl_host/nacl_process_host.cc',
4332 'browser/nacl_host/nacl_process_host.h', 4332 'browser/nacl_host/nacl_process_host.h',
4333 'browser/nacl_host/pnacl_file_host.cc',
4334 'browser/nacl_host/pnacl_file_host.h',
4333 ], 4335 ],
4334 'dependencies': [ 4336 'dependencies': [
4335 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l', 4337 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l',
4336 ], 4338 ],
4337 }], 4339 }],
4338 ['branding=="Chrome"', { 4340 ['branding=="Chrome"', {
4339 'sources!': [ 4341 'sources!': [
4340 'browser/protector/keys.cc', 4342 'browser/protector/keys.cc',
4341 ], 4343 ],
4342 }], 4344 }],
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
5615 'type': 'static_library', 5617 'type': 'static_library',
5616 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5618 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5617 'variables': { 5619 'variables': {
5618 'proto_in_dir': 'browser/history', 5620 'proto_in_dir': 'browser/history',
5619 'proto_out_dir': 'chrome/browser/history', 5621 'proto_out_dir': 'chrome/browser/history',
5620 }, 5622 },
5621 'includes': [ '../build/protoc.gypi' ] 5623 'includes': [ '../build/protoc.gypi' ]
5622 }, 5624 },
5623 ], 5625 ],
5624 } 5626 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698