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

Side by Side Diff: mojo/mojo_js_unittests.isolate

Issue 226123004: Get rid of all component builds specific .isolate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'includes': [ 5 'includes': [
6 '../third_party/icu/icu.isolate', 6 '../third_party/icu/icu.isolate',
7 ], 7 ],
8 'conditions': [ 8 'conditions': [
9 ['OS=="win" or OS=="mac" or OS=="linux"', { 9 ['OS=="win" or OS=="mac" or OS=="linux"', {
10 'variables': { 10 'variables': {
(...skipping 16 matching lines...) Expand all
27 }, 27 },
28 }], 28 }],
29 ['OS=="win"', { 29 ['OS=="win"', {
30 'variables': { 30 'variables': {
31 'isolate_dependency_tracked': [ 31 'isolate_dependency_tracked': [
32 '<(PRODUCT_DIR)/mojo_system.dll', 32 '<(PRODUCT_DIR)/mojo_system.dll',
33 '<(PRODUCT_DIR)/mojo_test_support.dll', 33 '<(PRODUCT_DIR)/mojo_test_support.dll',
34 ], 34 ],
35 }, 35 },
36 }], 36 }],
37 ['OS=="win" and component=="shared_library"', {
38 'variables': {
39 'isolate_dependency_tracked': [
40 '<(PRODUCT_DIR)/base.dll',
41 '<(PRODUCT_DIR)/base_i18n.dll',
42 '<(PRODUCT_DIR)/gin.dll',
43 '<(PRODUCT_DIR)/mojo_system_impl.dll',
44 '<(PRODUCT_DIR)/msvcp120d.dll',
45 '<(PRODUCT_DIR)/msvcr120d.dll',
46 '<(PRODUCT_DIR)/v8.dll',
47 ],
48 },
49 }],
50 ['OS=="linux"', { 37 ['OS=="linux"', {
51 'variables': { 38 'variables': {
52 'isolate_dependency_tracked': [ 39 'isolate_dependency_tracked': [
53 '<(PRODUCT_DIR)/lib/libmojo_test_support.so', 40 '<(PRODUCT_DIR)/lib/libmojo_test_support.so',
54 ], 41 ],
55 }, 42 },
56 }], 43 }],
57 ['OS=="linux" and component=="shared_library"', {
58 'variables': {
59 'isolate_dependency_tracked': [
60 '<(PRODUCT_DIR)/lib/libbase.so',
61 '<(PRODUCT_DIR)/lib/libbase_i18n.so',
62 '<(PRODUCT_DIR)/lib/libgin.so',
63 '<(PRODUCT_DIR)/lib/libmojo_system_impl.so',
64 '<(PRODUCT_DIR)/lib/libv8.so',
65 ],
66 },
67 }],
68 ['OS=="mac"', { 44 ['OS=="mac"', {
69 'variables': { 45 'variables': {
70 'isolate_dependency_tracked': [ 46 'isolate_dependency_tracked': [
71 '<(PRODUCT_DIR)/libmojo_test_support.dylib', 47 '<(PRODUCT_DIR)/libmojo_test_support.dylib',
72 ], 48 ],
73 }, 49 },
74 }], 50 }],
75 ['OS=="mac" and component=="shared_library"', {
76 'variables': {
77 'isolate_dependency_tracked': [
78 '<(PRODUCT_DIR)/libbase.dylib',
79 '<(PRODUCT_DIR)/libbase_i18n.dylib',
80 '<(PRODUCT_DIR)/libgin.dylib',
81 '<(PRODUCT_DIR)/libmojo_common_lib.dylib',
82 '<(PRODUCT_DIR)/libmojo_system_impl.dylib',
83 '<(PRODUCT_DIR)/libv8.dylib',
84 ],
85 },
86 }],
87 ], 51 ],
88 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698