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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 13913025: Add chrome.isolate and chrome_run gyp target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « chrome/chrome.isolate ('k') | no next file » | 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) 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': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 'targets': [ 599 'targets': [
600 { 600 {
601 'target_name': 'chrome_nacl_win64', 601 'target_name': 'chrome_nacl_win64',
602 'type': 'none', 602 'type': 'none',
603 'sources': [], 603 'sources': [],
604 }, 604 },
605 ], 605 ],
606 }], 606 }],
607 ], 607 ],
608 }], 608 }],
609 ['test_isolation_mode != "noop"', {
610 'targets': [
611 {
612 'target_name': 'chrome_run',
613 'type': 'none',
614 'dependencies': [
615 'chrome',
616 ],
617 'includes': [
618 '../build/isolate.gypi',
619 'chrome.isolate',
620 ],
621 'sources': [
622 'chrome.isolate',
623 ],
624 'conditions': [
625 ['OS=="win"', {
626 'dependencies': [
627 'chrome_nacl_win64',
628 ],
629 }],
630 ],
631 },
632 ],
633 }],
609 ], 634 ],
610 } 635 }
OLDNEW
« no previous file with comments | « chrome/chrome.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698