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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 717223002: Browser watcher end-end-to-end . (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkgr
Patch Set: Address Erik's comments. Created 6 years, 1 month 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 | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_constants.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) 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': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 ], 91 ],
92 }], 92 }],
93 ['order_text_section!=""', { 93 ['order_text_section!=""', {
94 'target_conditions' : [ 94 'target_conditions' : [
95 ['_toolset=="target"', { 95 ['_toolset=="target"', {
96 'ldflags': [ 96 'ldflags': [
97 '-Wl,-section-ordering-file=<(order_text_section)' ], 97 '-Wl,-section-ordering-file=<(order_text_section)' ],
98 }], 98 }],
99 ] 99 ]
100 }], 100 }],
101 ['OS == "win"', {
102 'dependencies': [
103 '../components/components.gyp:browser_watcher',
104 '../components/components.gyp:browser_watcher_client',
105 ],
106 }],
101 ['OS == "android"', { 107 ['OS == "android"', {
102 # Don't put the 'chrome' target in 'all' on android 108 # Don't put the 'chrome' target in 'all' on android
103 'suppress_wildcard': 1, 109 'suppress_wildcard': 1,
104 }], 110 }],
105 ['os_posix == 1 and OS != "mac" and OS != "android"', { 111 ['os_posix == 1 and OS != "mac" and OS != "android"', {
106 'actions': [ 112 'actions': [
107 { 113 {
108 'action_name': 'manpage', 114 'action_name': 'manpage',
109 'conditions': [ 115 'conditions': [
110 [ 'branding == "Chrome"', { 116 [ 'branding == "Chrome"', {
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'dependencies': [ 694 'dependencies': [
689 'chrome_nacl_win64', 695 'chrome_nacl_win64',
690 ], 696 ],
691 }], 697 }],
692 ], 698 ],
693 }, 699 },
694 ], 700 ],
695 }], 701 }],
696 ], 702 ],
697 } 703 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698