Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(175)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: native_client_sdk/src/libraries/xray/library.dsc
Issue
19409003
:
Update Xray for PNaCl (Closed)
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: the real changes
Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
native_client_sdk/src/libraries/xray/browser.c
native_client_sdk/src/libraries/xray/library.dsc
native_client_sdk/src/libraries/xray/report.c
native_client_sdk/src/libraries/xray/symtable.c
native_client_sdk/src/libraries/xray/xray.h
native_client_sdk/src/libraries/xray/xray.c
native_client_sdk/src/libraries/xray/xray_priv.h
View unified diff
|
Download patch
« no previous file with comments
|
« native_client_sdk/src/libraries/xray/browser.c
('k') |
native_client_sdk/src/libraries/xray/report.c »
('j') |
native_client_sdk/src/libraries/xray/symtable.c »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 {
1 {
2
'TOOLS': ['newlib', 'glibc'],
2
'TOOLS': ['newlib', 'glibc'
, 'pnacl'
],
3 'SEARCH': [
3 'SEARCH': [
4 '.'
4 '.'
5 ],
5 ],
6 'TARGETS': [
6 'TARGETS': [
7 {
7 {
8 'NAME' : 'xray',
8 'NAME' : 'xray',
9 'TYPE' : 'lib',
9 'TYPE' : 'lib',
10 'SOURCES' : [
10 'SOURCES' : [
11 'demangle.c',
11 'demangle.c',
12 'hashtable.c',
12 'hashtable.c',
13 'parsesymbols.c',
13 'parsesymbols.c',
14 'report.c',
14 'report.c',
15
'browser.c',
15 'stringpool.c',
16 'stringpool.c',
16 'symtable.c',
17 'symtable.c',
17 'xray.c'
18 'xray.c'
18 ],
19 ],
19 'CCFLAGS': [
20 'CCFLAGS': [
20 '-DXRAY -DXRAY_ANNOTATE -O2'
21 '-DXRAY -DXRAY_ANNOTATE -O2'
21 ]
22 ]
22 }
23 }
23 ],
24 ],
24 'HEADERS': [
25 'HEADERS': [
25 {
26 {
26 'FILES': [
27 'FILES': [
27 'xray.h',
28 'xray.h',
28 'xray_priv.h'
29 'xray_priv.h'
29 ],
30 ],
30 'DEST': 'include/xray',
31 'DEST': 'include/xray',
31 }
32 }
32 ],
33 ],
33 'DEST': 'src',
34 'DEST': 'src',
34 'NAME': 'xray',
35 'NAME': 'xray',
35 'EXPERIMENTAL': True,
36 'EXPERIMENTAL': True,
36 }
37 }
OLD
NEW
« no previous file with comments
|
« native_client_sdk/src/libraries/xray/browser.c
('k') |
native_client_sdk/src/libraries/xray/report.c »
('j') |
native_client_sdk/src/libraries/xray/symtable.c »
('J')
Issue 19409003: Update Xray for PNaCl (Closed)
Created 7 years, 5 months ago by grosse
Modified 7 years, 5 months ago
Reviewers: nfullagar1
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Comments: 93
This is Rietveld
408576698