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

Unified Diff: build/all.gyp

Issue 953803004: Attempt to fix all.gyp again, take #2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index d5a62021d3cbe197158be4e0a0f937d1c6edab4c..1b4e52b06957cfc417043d22b9d75146f9d6d283 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -467,10 +467,56 @@
}, # target_name: chromium_builder_tests
],
'conditions': [
- # TODO(GYP) - make gyp_all and gn_all work on iOS and Android also.
+ ['OS!="ios"', {
+ 'targets': [
+ {
+ 'target_name': 'blink_tests',
+ 'type': 'none',
+ 'dependencies': [
+ '../third_party/WebKit/public/all.gyp:all_blink',
+ ],
+ 'conditions': [
+ ['OS=="android"', {
+ 'dependencies': [
+ '../content/content_shell_and_tests.gyp:content_shell_apk',
+ '../breakpad/breakpad.gyp:dump_syms#host',
+ '../breakpad/breakpad.gyp:minidump_stackwalk#host',
+ ],
+ }, { # OS!="android"
+ 'dependencies': [
+ '../content/content_shell_and_tests.gyp:content_shell',
+ ],
+ }],
+ ['OS=="win"', {
+ 'dependencies': [
+ '../content/content_shell_and_tests.gyp:content_shell_crash_service',
+ '../content/content_shell_and_tests.gyp:layout_test_helper',
+ ],
+ }],
+ ['OS!="win" and OS!="android"', {
+ 'dependencies': [
+ '../breakpad/breakpad.gyp:minidump_stackwalk',
+ ],
+ }],
+ ['OS=="mac"', {
+ 'dependencies': [
+ '../breakpad/breakpad.gyp:dump_syms#host',
+ '../content/content_shell_and_tests.gyp:layout_test_helper',
+ ],
+ }],
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../breakpad/breakpad.gyp:dump_syms',
+ ],
+ }],
+ ],
+ }, # target_name: blink_tests
+ ],
+ }], # OS!=ios
['OS!="ios" and OS!="android"', {
'targets': [
{
+ # TODO(GYP) - make gyp_all and gn_all work on iOS and Android also.
'target_name': 'gyp_all',
'type': 'none',
'dependencies': [
@@ -620,57 +666,7 @@
}],
],
},
- ]},
- ], # OS!="ios" and OS!="android"
- ['OS!="iOS"', {
- 'targets': [
- {
- 'target_name': 'blink_tests',
- 'type': 'none',
- 'dependencies': [
- '../third_party/WebKit/public/all.gyp:all_blink',
- ],
- 'conditions': [
- ['OS=="android"', {
- 'dependencies': [
- '../content/content_shell_and_tests.gyp:content_shell_apk',
- '../breakpad/breakpad.gyp:dump_syms#host',
- '../breakpad/breakpad.gyp:minidump_stackwalk#host',
- ],
- }, { # OS!="android"
- 'dependencies': [
- '../content/content_shell_and_tests.gyp:content_shell',
- ],
- }],
- ['OS=="win"', {
- 'dependencies': [
- '../content/content_shell_and_tests.gyp:content_shell_crash_service',
- '../content/content_shell_and_tests.gyp:layout_test_helper',
- ],
- }],
- ['OS!="win" and OS!="android"', {
- 'dependencies': [
- '../breakpad/breakpad.gyp:minidump_stackwalk',
- ],
- }],
- ['OS=="mac"', {
- 'dependencies': [
- '../breakpad/breakpad.gyp:dump_syms#host',
- '../content/content_shell_and_tests.gyp:layout_test_helper',
- ],
- }],
- ['OS=="linux"', {
- 'dependencies': [
- '../breakpad/breakpad.gyp:dump_syms',
- ],
- }],
- ],
- }, # target_name: blink_tests
- ],
- }], # OS!=ios
- ['OS!="ios" and OS!="android"', {
- 'targets': [
- {
+ ]},{
'target_name': 'chromium_builder_nacl_win_integration',
'type': 'none',
'dependencies': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698