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

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: rebase, update for pnacl layout change 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 4306 matching lines...) Expand 10 before | Expand all | Expand 10 after
4317 ], 4317 ],
4318 'conditions': [ 4318 'conditions': [
4319 ['disable_nacl==0', { 4319 ['disable_nacl==0', {
4320 'sources': [ 4320 'sources': [
4321 'browser/nacl_host/nacl_broker_host_win.cc', 4321 'browser/nacl_host/nacl_broker_host_win.cc',
4322 'browser/nacl_host/nacl_broker_host_win.h', 4322 'browser/nacl_host/nacl_broker_host_win.h',
4323 'browser/nacl_host/nacl_broker_service_win.cc', 4323 'browser/nacl_host/nacl_broker_service_win.cc',
4324 'browser/nacl_host/nacl_broker_service_win.h', 4324 'browser/nacl_host/nacl_broker_service_win.h',
4325 'browser/nacl_host/nacl_process_host.cc', 4325 'browser/nacl_host/nacl_process_host.cc',
4326 'browser/nacl_host/nacl_process_host.h', 4326 'browser/nacl_host/nacl_process_host.h',
4327 'browser/nacl_host/pnacl_file_host.cc',
4328 'browser/nacl_host/pnacl_file_host.h',
4327 ], 4329 ],
4328 'dependencies': [ 4330 'dependencies': [
4329 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l', 4331 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l',
4330 ], 4332 ],
4331 }], 4333 }],
4332 ['branding=="Chrome"', { 4334 ['branding=="Chrome"', {
4333 'sources!': [ 4335 'sources!': [
4334 'browser/protector/keys.cc', 4336 'browser/protector/keys.cc',
4335 ], 4337 ],
4336 }], 4338 }],
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
5610 'type': 'static_library', 5612 'type': 'static_library',
5611 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5613 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5612 'variables': { 5614 'variables': {
5613 'proto_in_dir': 'browser/history', 5615 'proto_in_dir': 'browser/history',
5614 'proto_out_dir': 'chrome/browser/history', 5616 'proto_out_dir': 'chrome/browser/history',
5615 }, 5617 },
5616 'includes': [ '../build/protoc.gypi' ] 5618 'includes': [ '../build/protoc.gypi' ]
5617 }, 5619 },
5618 ], 5620 ],
5619 } 5621 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698