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

Side by Side Diff: src/v8.gyp

Issue 1922303002: Create libsampler as V8 sampler library. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after
1916 'toolsets': ['target'], 1916 'toolsets': ['target'],
1917 }], 1917 }],
1918 ], 1918 ],
1919 'direct_dependent_settings': { 1919 'direct_dependent_settings': {
1920 'include_dirs': [ 1920 'include_dirs': [
1921 '../include', 1921 '../include',
1922 ], 1922 ],
1923 }, 1923 },
1924 }, 1924 },
1925 { 1925 {
1926 'target_name': 'v8_libsampler',
1927 'type': 'static_library',
1928 'variables': {
1929 'optimize': 'max',
1930 },
1931 'dependencies': [
1932 'v8_base',
1933 ],
1934 'include_dirs+': [
1935 '..',
1936 ],
1937 'sources': [
1938 'libsampler/v8-sampler.cc',
1939 'libsampler/v8-sampler.h'
1940 ],
1941 'conditions': [
1942 ['want_separate_host_toolset==1', {
1943 'toolsets': ['host', 'target'],
1944 }, {
1945 'toolsets': ['target'],
1946 }],
1947 ],
1948 'direct_dependent_settings': {
1949 'include_dirs': [
1950 '../include',
1951 ],
1952 },
1953 },
1954 {
1926 'target_name': 'natives_blob', 1955 'target_name': 'natives_blob',
1927 'type': 'none', 1956 'type': 'none',
1928 'conditions': [ 1957 'conditions': [
1929 [ 'v8_use_external_startup_data==1', { 1958 [ 'v8_use_external_startup_data==1', {
1930 'conditions': [ 1959 'conditions': [
1931 ['want_separate_host_toolset==1', { 1960 ['want_separate_host_toolset==1', {
1932 'dependencies': ['js2c#host'], 1961 'dependencies': ['js2c#host'],
1933 }, { 1962 }, {
1934 'dependencies': ['js2c'], 1963 'dependencies': ['js2c'],
1935 }], 1964 }],
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
2234 }], 2263 }],
2235 ['want_separate_host_toolset==1', { 2264 ['want_separate_host_toolset==1', {
2236 'toolsets': ['host'], 2265 'toolsets': ['host'],
2237 }, { 2266 }, {
2238 'toolsets': ['target'], 2267 'toolsets': ['target'],
2239 }], 2268 }],
2240 ], 2269 ],
2241 }, 2270 },
2242 ], 2271 ],
2243 } 2272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698